MATLAB: Display a dialog box showing output of a program

displayguiimage processingImage Processing Toolboxoutput

I have obtained some output parameters in my image processing project. I want to display the dialog box showing these output points only for the user. Please give me the code for the same. Thank you 🙂

Best Answer

meanval = 123.45;
target = 19;
msgdlg( sprintf('The meanval for target #%d is %f', target, meanval));