GUİ edit box setting
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponse acceptée
Jan
le 10 Déc 2022
syms x
eq = sin(x) == pi/2;
sol = solve(eq);
s = string(sol);
set(HandleOfTheEditField, 'String', s)
1 commentaire
Plus de réponses (0)
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!