Extracting the second decimal point of a number

조회 수: 4 (최근 30일)
joseph Frank
joseph Frank 2014년 6월 3일
답변: Roger Stafford 2014년 6월 3일
Hi,
I want to extract the 2nd decimal point without rounding from a vector of numbers. For example:
A=[8.18750];
I want to get number 8. How can I do so in a simple way.?

채택된 답변

Roger Stafford
Roger Stafford 2014년 6월 3일
A=[8.18750];
d = mod(floor(100*A),10);

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by