How to get back real value after rounding
Show older comments
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.
Accepted Answer
More Answers (1)
a=[3.3 0.5];
round_vector=round(a)
c=a-round_vector;
origin_vector=round_vector+c
Categories
Find more on Resizing and Reshaping Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!