what str2num will perform?
1 回表示 (過去 30 日間)
古いコメントを表示
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 件のコメント
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 Center および File Exchange で Data Type Conversion についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!