How to use the zplane command in app designer

5 ビュー (過去 30 日間)
Eshaan Jain
Eshaan Jain 2022 年 11 月 12 日
回答済み: cr 2022 年 11 月 12 日
I have to make a pole-zero plot on a Matlab app without a pop-up
t = -pi:0.01:pi;
num1 = poly(zer);
dem1 = poly(pol);
num = flip(num1);
dem = flip(dem1);
[h,w] = freqz(num,dem,t);
% h = abs(h);
plot(app.UIAxes2, w,h);
xlim(app.UIAxes2,[-pi pi]);
% zplane(num1,dem1)
title('Pole-Zero plot')
plot(app.UIAxes,zplane(num1,dem1))

採用された回答

cr
cr 2022 年 11 月 12 日
I dont think zplane() has a syntax to pass in handle to target axes. Instead plot zeros and poles separately using plot function which can be used in plot(app.UIAxes,...) syntax.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDigital Filter Analysis についてさらに検索

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by