Borrar filtros
Borrar filtros

reading a particular value from a textfile

1 visualización (últimos 30 días)
Siddharth
Siddharth el 29 de Mayo de 2013
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.

Respuesta aceptada

Thomas
Thomas el 29 de Mayo de 2013
Editada: Thomas el 29 de Mayo de 2013
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)

Más respuestas (0)

Categorías

Más información sobre Low-Level File I/O en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by