error while converting to string
3 ビュー (過去 30 日間)
古いコメントを表示
m = 08
When I am converting the above statement to string by using
string(m)
m becomes 8. However, I want the value of m to remain 08.
Can you help me out?
0 件のコメント
採用された回答
Stephen23
2023 年 8 月 25 日
移動済み: Walter Roberson
2023 年 8 月 25 日
"However, I want the value of m to remain 08."
Numeric data classes do not store formatting information e.g. how many leading zeros. So asking for the zero to "remain" does not make any sense, because something that is not there cannot "remain". But you can easily specify the leading zeros when you convert to text:
m = 8;
s = sprintf("%02u",m)
その他の回答 (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!