reading a particular value from a textfile

hi,
how can i read the data in the mth row and nth column of a textfile? i used this to store the data in an array:
fid = fopen ('\sample.txt'); c=fscanf (fid, '%g%g');
thanks.

 Akzeptierte Antwort

Thomas
Thomas am 29 Mai 2013
Bearbeitet: Thomas am 29 Mai 2013

0 Stimmen

To read the data in mth row in th column of variable c use
fid = fopen ('\sample.txt');
c=fscanf (fid, '%g%g');
c(m,n)

Weitere Antworten (0)

Kategorien

Community Treasure Hunt

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

Start Hunting!

Translated by