converting a vector entry into string
1 回表示 (過去 30 日間)
古いコメントを表示
Hello fellows: I know that this topic (conversion of a number into a string) is very basic one and the syntax for it is num2str. However I am facing an error when trying to convert a number in a vector into string using the following for loop:
for i=1:L-1
display(['k', num2str(i),' = ',num2str(k(i)),' pixels^-1.']);
end
The error is:
Undefined function 'num2srt' for input arguments of type 'double'.
Any help will be appreciated
1 件のコメント
採用された回答
Oleg Komarov
2012 年 8 月 3 日
It appears to be a typo, are you sure that you're using num2str() instead of num2srt()?
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Characters and Strings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!