To read a text file using matlab
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
hi, this is a simple question
v='C:\Users\punith\Desktop\1.txt';% path
how to read text file using v
0 Kommentare
Akzeptierte Antwort
Honglei Chen
am 6 Mär. 2012
Use fopen to open the file and then use fscanf or fgetl to read in the content. You can also use fread. For example, the following code reads the first line of the text.
fid = fopen(v,'r');
tline = fgetl(fid);
fclose(fid)
Just to remember close the file using fclose afterwards.
doc fopen
doc fclose
doc fread
doc fscanf
doc fgetl
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Large Files and Big Data finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!