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 Commenti

Image Analyst
Image Analyst il 10 Dic 2022
GUIDE or App Designer?
Erdem Aktürk
Erdem Aktürk il 10 Dic 2022
Guide

Accedi per commentare.

 Risposta accettata

Jan
Jan il 10 Dic 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 Commento

Rik
Rik il 10 Dic 2022
Just a sidenote: this will automatically convert the string vector to a cellstr.

Accedi per commentare.

Più risposte (0)

Richiesto:

il 10 Dic 2022

Commentato:

Rik
il 10 Dic 2022

Community Treasure Hunt

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

Start Hunting!

Translated by