Clear Filters
Clear Filters

Display number of digit is 2 in GUI Matlab

2 views (last 30 days)
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

Accepted Answer

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

More Answers (0)

Community Treasure Hunt

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

Start Hunting!