GUİ edit box setting
조회 수: 16 (최근 30일)
이전 댓글 표시
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
채택된 답변
Jan
2022년 12월 10일
syms x
eq = sin(x) == pi/2;
sol = solve(eq);
s = string(sol);
set(HandleOfTheEditField, 'String', s)
댓글 수: 1
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!