How to display a complex number in edit in GUI?
Ältere Kommentare anzeigen
As in the question, I use
set(handles.B ,'String',B );
to display a complex number in an edit, but it seems only real part are displayed. How can I display a complex number like
a+ib
in an edit box?
Antworten (2)
Doug Hull
am 18 Nov. 2013
0 Stimmen
Make a second edit box right next to it that only displays the imaginary part and is labeled with an i (or j if you are that type)
Abdelrahman Yousri
am 28 Dez. 2020
0 Stimmen
Since B is a number type, you should make it string type so try this >> set(handles.B, 'String', ({num2str(B)}));
Kategorien
Mehr zu MATLAB finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!