reading a particular value from a textfile

2 vues (au cours des 30 derniers jours)
Siddharth
Siddharth le 29 Mai 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.

Réponse acceptée

Thomas
Thomas le 29 Mai 2013
Modifié(e) : Thomas le 29 Mai 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)

Plus de réponses (0)

Catégories

En savoir plus sur Text Data Preparation dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by