How to sorten the result value depicted on text area
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Amron
il 12 Set 2023
Commentato: NAVNEET NAYAN
il 13 Set 2023
hello, please help me.
the result of my calculation which is presented on "text area" is too long. i wanna shorten it at least to have one digit decimal. how can i do that? thanks
0 Commenti
Risposta accettata
NAVNEET NAYAN
il 12 Set 2023
Modificato: NAVNEET NAYAN
il 12 Set 2023
you can use "round" function.
See it's documentation (https://in.mathworks.com/help/releases/R2022b/matlab/ref/round.html?s_tid=doc_srchtitle).
I think that might also help.
Like
Min_diameter=0.56616
Min_diameter=round(Min_diameter,N);
N in your case will be 1, as you are looking for one digit decimal place.
2 Commenti
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Startup and Shutdown in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!