RF-Toolbox : How to show a smithplot not as figure but as AXES-Object? (app-Designer)

조회 수: 1 (최근 30일)
There is no good help for the use of smithplot(ax,...) .
I put an AXES-Object in the GUI. How to bind this Axes to the Smithplot? I don't want to have the Smithplot in a separate figure.

답변 (1개)

Amrtanshu Raj
Amrtanshu Raj 2020년 9월 8일
Hi,
Current AppDesigner UIAxes does not support the Smithplot function.
You can use axes in place of UIAxes to get the desired result.
Insert the following code in the function used to create the smithPlot
app.UIFigure.AutoResizeChildren = 'off';
a = axes(app.UIFigure);
smithplot(a,freq,data);

카테고리

Help CenterFile Exchange에서 Data Import and Export에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by