put the fit messenge on text box

3 Ansichten (letzte 30 Tage)
Zih-Sian Yang
Zih-Sian Yang am 1 Apr. 2020
Beantwortet: Adam Danz am 1 Apr. 2020
I want to build up a fit gui,how can i put the fit messenge(cfit) on the text box.

Akzeptierte Antwort

Adam Danz
Adam Danz am 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;

Weitere Antworten (0)

Kategorien

Mehr zu Graphics Object Programming finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by