필터 지우기
필터 지우기

How to read text line and assign value to variable?

조회 수: 4 (최근 30일)
John
John 2018년 10월 15일
편집: Stephen23 2018년 10월 16일
Many tech files have header like this:
int display_order = 1;
int bigendian = 0;
float imagescale = 1.000000000;
float psi = 359.9580;
float phi = 0.0000;
float theta = 90.0000;
float orientation[] = {-1.0000,0.0007,-0.0000,-0.0000,-0.0000,1.0000,0.0007,1.0000,0.0000};
How can each line be assigned to the variable with value (after fgetl)?
For example: the line float
psi = 359.9580;
becomes
psi = float(359.9580);
  댓글 수: 1
dpb
dpb 2018년 10월 15일
float is not valid Matlab data type; either single or double; double is default and Matlab also is un-typed for numeric classes; integers are by default stored as double as well.
You could almost turn it into an m-file as is simply by dropping the first word of each line and rewriting; the empty [] in the array are the only thing preventing that in that sample although the curlies "{}" instead of parenetheses would create a cell array instead of a base numeric array.

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

채택된 답변

KSSV
KSSV 2018년 10월 16일
fid = fopen('data.txt','r') ;
S = textscan(fid,'%s','delimiter','\n') ;
fclose(fid) ;
% GEt the line where psi lies
S = S{1} ;
idx = contains(S,'psi') ;
S = S(idx) ;
S = strsplit(S{1}) ;
psi = str2num(S{4})
  댓글 수: 2
John
John 2018년 10월 16일
Thanks, KSSV!
How can we assign the 'psi' which it may not be known ahead as variable name 'psi' (and all other names) ?
Stephen23
Stephen23 2018년 10월 16일
편집: Stephen23 2018년 10월 16일
@John: In general it is a bad idea to magically access a variable name. Read this to know why:
You could write a function and use inputname.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by