GUİ edit box setting

3 visualizaciones (últimos 30 días)
Erdem Aktürk
Erdem Aktürk el 10 de Dic. de 2022
Comentada: Rik el 10 de Dic. de 2022
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 comentarios
Image Analyst
Image Analyst el 10 de Dic. de 2022
GUIDE or App Designer?
Erdem Aktürk
Erdem Aktürk el 10 de Dic. de 2022
Guide

Iniciar sesión para comentar.

Respuesta aceptada

Jan
Jan el 10 de Dic. de 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 comentario
Rik
Rik el 10 de Dic. de 2022
Just a sidenote: this will automatically convert the string vector to a cellstr.

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by