GUİ edit box setting
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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
Risposta accettata
Jan
il 10 Dic 2022
syms x
eq = sin(x) == pi/2;
sol = solve(eq);
s = string(sol);
set(HandleOfTheEditField, 'String', s)
1 Commento
Più risposte (0)
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!