Filter löschen
Filter löschen

Read Data From txt file using uigetfile...

9 Ansichten (letzte 30 Tage)
Masoud Ghanbari
Masoud Ghanbari am 21 Jun. 2013
Hi
I Have to read a file using uigetfile by this code by i face the error...
[filename,pathname,d] = uigetfile('*.txt;');
filepath=fullfile('pathname','filename');
fid = fopen('filepath');
mline1 = textscan(fid, '%f%s%s%f%f%s%s%f%f ','HeaderLines',5);
fclose(fid);
Error:
Error using textscan
Invalid file identifier. Use fopen to generate a valid
file identifier.
By The Way I Already have done it without using uigetfile...
another point is data should be a number not a string cause they are going to plotted... What should i do to convert them???
  1 Kommentar
Walter Roberson
Walter Roberson am 21 Jun. 2013
For the bit about it needing to be a number, we need a sample input line.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 21 Jun. 2013
do not put the aote matks around filepath.
fopen(filepath)
  9 Kommentare
Walter Roberson
Walter Roberson am 22 Jun. 2013
mline_num = [mline1{[1:5 7]}];
mline_txt = mline1{6};
Masoud Ghanbari
Masoud Ghanbari am 23 Jun. 2013
Thanks Dear Walter And Dear Azzi...

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

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!

Translated by