put the fit messenge on text box

2 views (last 30 days)
I want to build up a fit gui,how can i put the fit messenge(cfit) on the text box.

Accepted Answer

Adam Danz
Adam Danz on 1 Apr 2020
Assuming your textbox handle is handles.textbox, and c is the cfit object,
cText = evalc('c');
handles.textbox.Max = 2; % this allows for multiple lines of text
handles.textbox.String = cText;

More Answers (0)

Categories

Find more on Graphics Object Programming in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!