How to get back real value after rounding
Afficher commentaires plus anciens
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.
Réponse acceptée
Plus de réponses (1)
a=[3.3 0.5];
round_vector=round(a)
c=a-round_vector;
origin_vector=round_vector+c
Catégories
En savoir plus sur Startup and Shutdown dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!