i have an value as 6.5.give me the syntax to get the whole number 6
Afficher commentaires plus anciens
i have an value as 6.5.give me the syntax to get the whole number 6
Réponse acceptée
Plus de réponses (1)
Image Analyst
le 1 Nov 2012
Do you want a floating point number or an integer? Here it is both ways:
v = 6.5;
vDouble = floor(v)
class(vDouble)
vInt = int32(floor(v))
class(vInt)
In the command window:
vDouble =
6
ans =
double
vInt =
6
ans =
int32
Catégories
En savoir plus sur Aerospace Blockset 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!