Display number of digit is 2 in GUI Matlab

1 visualizzazione (ultimi 30 giorni)
Hi, i want display value of nlevel into my GUI, this is my code
global img;
nlevel= NoiseLevel(img);
set(handles.text2,'String', nlevel);
But its output long digit number decimal, how to reduce digit decimal, so it will only show 2 digit decimal? Thank you

Risposta accettata

Walter Roberson
Walter Roberson il 4 Giu 2018
set(handles.text2, 'String', sprintf('%.2f', nlevel) );

Più risposte (0)

Categorie

Scopri di più su Characters and Strings 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!

Translated by