GUİ edit box setting

18 次查看(过去 30 天)
Erdem Aktürk
Erdem Aktürk 2022-12-10
评论: Rik 2022-12-10
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?

采纳的回答

Jan
Jan 2022-12-10
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 个评论
Rik
Rik 2022-12-10
Just a sidenote: this will automatically convert the string vector to a cellstr.

请先登录,再进行评论。

更多回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by