Round all values in table
30 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I have a table with calculated values. Now I want to round all values to 2 decimals. How can I do that in once for the whole table?
0 件のコメント
回答 (1 件)
Scott MacKenzie
2021 年 10 月 25 日
編集済み: Scott MacKenzie
2021 年 10 月 25 日
I think this achieves what you are after:
% test data
T1 = array2table(rand(5))
% rounded to 2 decimal places
T2 = array2table(round(T1{:,:},2))
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!