adding trailing 0s to inputted numbers
40 ビュー (過去 30 日間)
古いコメントを表示
Is there a way to add trailing 0s after they are inputted in MATLAB (ex turning 4 -> 4.0 or 4.00?) my code wont work unless the sigfigs match but i found rounding them in the matrix using M = round(M,4,"decimals") or M = round(M,4,"significant") just keeps it at the same integer value.
Thank you!
1 件のコメント
回答 (1 件)
Eric Delgado
2022 年 9 月 19 日
You have to use strings to control the number of decimals.
sprintf('%.1f', 4)
sprintf('%.2f', 4)
sprintf('%.6f', 4)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!