필터 지우기
필터 지우기

How can I read a complex number vector?

조회 수: 7 (최근 30일)
André Luiz Regis Monteiro
André Luiz Regis Monteiro 2014년 2월 11일
편집: JasonLuo 2018년 1월 25일
Hi, I have this problem. I'm trying to read a complex number vector from a txt file using this structure:
fid=fopen ('VarName4.txt','r');
acorrente=fscanf(fid,'%f');
fclose (fid);
VarName4.txt is a vector 1000x1 like this:
[0.0141451080390089-0.00224036502008852i
0.0141451080390089-0.00224036502008852i
0.0141451080390089-0.00224036502008852i
0.0141451080390089-0.00224036502008852i...]
Using the structure before, the answer is:
acorrente =
0.0141
-0.0022
Why it doesn't work? Could someone teach me? Thanks a lot!
  댓글 수: 2
José-Luis
José-Luis 2014년 2월 11일
It doesn't work because you are telling fscanf to expect a floating point number. Fscanf won't read in imaginary numbers.
André Luiz Regis Monteiro
André Luiz Regis Monteiro 2014년 2월 11일
Hi José-Luis. So, How can I do? thanks.

댓글을 달려면 로그인하십시오.

채택된 답변

Mischa Kim
Mischa Kim 2014년 2월 11일
편집: Mischa Kim 2014년 2월 11일
André Luiz, this should do:
fid = fopen ('VarName4.txt','r');
ii = 1;
while ~feof(fid)
acorrente(ii, :) = str2num(fgets(fid));
ii = ii + 1;
end
fclose(fid);
...read each line of the text file, convert it from string to number and save it in the matrix. The loop will keep reading until the end of the file ( feof ) is reached.
  댓글 수: 3
André Luiz Regis Monteiro
André Luiz Regis Monteiro 2014년 2월 11일
편집: André Luiz Regis Monteiro 2014년 2월 11일
Hi Mischa Kim. Thank you for your attention. It worked! But the numbers are still being cut. Could you help again? Thanks.
original: 0.0141451080390089-0.00224036502008852i answer: 0.0141 - 0.0022i I need a complete number. Thanks a lot.
Mischa Kim
Mischa Kim 2014년 2월 11일
편집: Mischa Kim 2014년 2월 11일
That's a formatting setting, the number is saved correctly. In the MATLAB command window put
format long

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

JasonLuo
JasonLuo 2018년 1월 25일
편집: JasonLuo 2018년 1월 25일

카테고리

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