How I can remove the decimal part in matlab?

조회 수: 27 (최근 30일)
Ameligege
Ameligege 2015년 2월 12일
댓글: Ameligege 2015년 2월 13일
in the division operation i want only the real part without the decimal part? like 4.56 I want only 4 how can i do that?

채택된 답변

Image Analyst
Image Analyst 2015년 2월 12일
Look up the help for round(), floor(), ceil(), and fix(). Those all do that and leave the number as a double. If you want an integer data type, you can use uint8(), uint32(), int32(), uint16(), and int32(). These also chop off the fraction and round, but give you an integer data type instead of a floating point data type.

추가 답변 (1개)

Eduardo Márquez
Eduardo Márquez 2015년 2월 12일
편집: Eduardo Márquez 2015년 2월 12일

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by