필터 지우기
필터 지우기

what str2num will perform?

조회 수: 1 (최근 30일)
Shan Sha
Shan Sha 2018년 11월 13일
댓글: Rik 2018년 11월 13일
fid = fopen(txtfile,'r');
tline = fgetl(fid);
index = findstr(tline,'.');
i = i+1;
filenames(i) = str2num(tline(1:index-1))+1;
what is the function of str2num here? I am not getting clear with the mathwork help. Can anyone explain in brief?
  댓글 수: 2
Adam
Adam 2018년 11월 13일
편집: Adam 2018년 11월 13일
It converts a string to a number, if such a conversion makes sense.
You can just try it on your command line, e.g.
str2num( '17' )
Surely
doc str2num
is fairly clear though?! It gives clear examples.
Rik
Rik 2018년 11월 13일
As the documentation mentions, str2num uses eval and might thus have unintended side effects, which you can avoid by using str2double. In most cases these two functions should be equivalent.

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

답변 (0개)

카테고리

Help CenterFile Exchange에서 String에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by