How to get back real value after rounding
古いコメントを表示
Hello, I have the value 3.3 and 0.5, when I apply my algorithim i round the value to 3.3 to 3 and 0.5 to 1.
I want to get back the real value 3.3 and 0.5 after rounding. How can i do that in MATALAB.
採用された回答
その他の回答 (1 件)
a=[3.3 0.5];
round_vector=round(a)
c=a-round_vector;
origin_vector=round_vector+c
カテゴリ
ヘルプ センター および File Exchange で Startup and Shutdown についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!