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

GUIDE or App Designer?
Guide

Sign in to comment.

 Accepted Answer

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)

Asked:

on 10 Dec 2022

Commented:

Rik
on 10 Dec 2022

Community Treasure Hunt

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

Start Hunting!