How to display a complex number in edit in GUI?

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?

답변 (2개)

Doug Hull
Doug Hull 2013년 11월 18일

0 개 추천

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
Abdelrahman Yousri 2020년 12월 28일

0 개 추천

Since B is a number type, you should make it string type so try this >> set(handles.B, 'String', ({num2str(B)}));

카테고리

도움말 센터File Exchange에서 MATLAB에 대해 자세히 알아보기

질문:

2013년 11월 18일

답변:

2020년 12월 28일

Community Treasure Hunt

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

Start Hunting!

Translated by