Round down to nearest 100

43 visualizaciones (últimos 30 días)
Grant Brown
Grant Brown el 14 de Dic. de 2023
Comentada: Voss el 14 de Dic. de 2023
Hello I am doing timing phase correction in a QPSK system. Given a maximum power timing phase I need to round down to nearest 100.
Example:
If I get 568, I want to get 500.
Round(568,-2) gives 600. I need to always round down. What do you all suggest?

Respuesta aceptada

Voss
Voss el 14 de Dic. de 2023
Divide by 100, then floor() or fix() (depending on how you want to handle negative numbers), then multiply by 100.
x = 568;
floor(x/100)*100
ans = 500
fix(x/100)*100
ans = 500
x = -568;
floor(x/100)*100
ans = -600
fix(x/100)*100
ans = -500
  2 comentarios
Grant Brown
Grant Brown el 14 de Dic. de 2023
thanks for the help!
Voss
Voss el 14 de Dic. de 2023
You're welcome!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Elementary Math 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