Extract N number of digits after the dot

8 Ansichten (letzte 30 Tage)
neamah al-naffakh
neamah al-naffakh am 9 Okt. 2017
Kommentiert: Star Strider am 9 Okt. 2017
Hi guys,
suppose N=1234.4345
I would like to store in this variable the decimal number and the first two digits only after the dot.
(e.g. N=1234.43 )
Kind Regards.

Akzeptierte Antwort

Star Strider
Star Strider am 9 Okt. 2017
You can use the most recent version of the round function, or use this emulation of it:
roundn = @(x,n) round(x .* 10.^n)./10.^n; % Round ‘x’ To ‘n’ Digits, Emulates Latest ‘round’ Function
N = 1234.4345
N = roundn(N,2)
N =
1234.4345
N =
1234.43
  2 Kommentare
neamah al-naffakh
neamah al-naffakh am 9 Okt. 2017
thank you so much
Star Strider
Star Strider am 9 Okt. 2017
As always, my pleasure.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by