Hello,
I want to ask you how I can precise the numbers after comma
for example:
x=0.2584
the result should be x=0.2
Please help me!

 Réponse acceptée

Ameer Hamza
Ameer Hamza le 3 Nov 2020
Modifié(e) : Ameer Hamza le 3 Nov 2020
If the numbers are positive
x = 0.2584
y = floor(x*10)/10
If both positive and negative 'x' are possible
y = sign(x)*floor(abs(x)*10)/10

Plus de réponses (0)

Catégories

En savoir plus sur Get Started with MATLAB dans Centre d'aide et File Exchange

Produits

Version

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by