reading a particular value from a textfile

1 次查看(过去 30 天)
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.

采纳的回答

Thomas
Thomas 2013-5-29
编辑:Thomas 2013-5-29
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)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Low-Level File I/O 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by