How can I remove integers after the decimal points
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Anup Badve
am 28 Okt. 2015
Kommentiert: Anup Badve
am 28 Okt. 2015
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 Kommentare
Akzeptierte Antwort
Wanbin Song
am 28 Okt. 2015
You can use floor function which rounds toward negative infinity.
A = floor(A);
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Acquisition Toolbox Supported Hardware finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!