Read from file

10 visualizzazioni (ultimi 30 giorni)
Andrea Ferrari
Andrea Ferrari il 5 Mar 2012
Hi all,
How can i read a file with this format:
x1 (((x2 x3 x4) (x5 x6 x7)) ((x8 x9 x10) (x11 x12 x13)))
where x_n are numbers. I do not know how to skip the brackets.
Regards
Andrea
  1 Commento
Jan
Jan il 5 Mar 2012
What is the desired output?

Accedi per commentare.

Risposte (1)

Ken Atwell
Ken Atwell il 5 Mar 2012
If you really want to just ignore the the parenthesis, you can treat them as "whitespace" characters in a call to textscan:
f = fopen('test.dat')
data=textscan(f, '%f', 'Whitespace', ' \b\t()')
fclose(f)
"data" will be a 1x1 cell array containing a numeric array with your data.

Categorie

Scopri di più su Data Import and Analysis in Help Center e File Exchange

Tag

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by