Hi,
I have a query
i have 2 number
1] 1.6778
2] 2.032
How do i take the number 1.6778 to 1.7 ( nearest value)
and 2.032 to 2.0 ?
Kindly help

 Réponse acceptée

Adam Danz
Adam Danz le 22 Avr 2020
Modifié(e) : Adam Danz le 22 Avr 2020
Y = round(X,N) where N is the number of digits to the right (when positive) or left (negative).
Alternativly,
y = round(X*10)/10;

3 commentaires

Ganesh Kini
Ganesh Kini le 22 Avr 2020
Thanks for the help
Ganesh Kini
Ganesh Kini le 22 Avr 2020
Modifié(e) : Ganesh Kini le 22 Avr 2020
So i have two values
A = 1.69 and B = 1.8
A = 2.1 and B = 2.4
How do i show it that they are approximately equal without using round
are there any relational operators that i can use?
Either ismembertol or do it yourself by comparing the absolute difference against a tolerance limit:
abs(A-B)<tol

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Scope Variables and Generate Names dans Centre d'aide et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by