Extract N number of digits after the dot

8 visualizaciones (últimos 30 días)
neamah al-naffakh
neamah al-naffakh el 9 de Oct. de 2017
Comentada: Star Strider el 9 de Oct. de 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.

Respuesta aceptada

Star Strider
Star Strider el 9 de Oct. de 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 comentarios
neamah al-naffakh
neamah al-naffakh el 9 de Oct. de 2017
thank you so much
Star Strider
Star Strider el 9 de Oct. de 2017
As always, my pleasure.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Matched Filter and Ambiguity Function en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by