How can I remove integers after the decimal points
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi,
I have to remove the all integers which will come after the decimal point. e.g If A=2.789 I want answer A=2, I don't want .789 value
0 commentaires
Réponse acceptée
Wanbin Song
le 28 Oct 2015
You can use floor function which rounds toward negative infinity.
A = floor(A);
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Data Acquisition Toolbox Supported Hardware dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!