GUİ edit box setting

3 views (last 30 days)
Erdem Aktürk
Erdem Aktürk on 10 Dec 2022
Commented: Rik on 10 Dec 2022
I found an answer which is in the sym type.I need to convert it to the string type in order to put it in a edit box in GUI.
How can I do that?
  2 Comments
Image Analyst
Image Analyst on 10 Dec 2022
GUIDE or App Designer?

Sign in to comment.

Accepted Answer

Jan
Jan on 10 Dec 2022
syms x
eq = sin(x) == pi/2;
sol = solve(eq);
s = string(sol);
s = 2×1 string array
"asin(pi/2)" "pi - asin(pi/2)"
set(HandleOfTheEditField, 'String', s)
  1 Comment
Rik
Rik on 10 Dec 2022
Just a sidenote: this will automatically convert the string vector to a cellstr.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!