extracting 1 plot out of multiple plots in a fig
2 ビュー (過去 30 日間)
古いコメントを表示
I used freqz(A,B) to generate the amplitude/phase versus frequency plots of a signal.
Now I want to use only the magnitude plot. How can I extract this plot and display just that. Can I display it as a subplot of a series of plots? How?
Thanks
0 件のコメント
回答 (2 件)
Aurelien Queffurust
2012 年 10 月 12 日
Using the debug mode , I find that freqz is calling freqzplot . freqzplot is obsolete and fvtool should be used instead. So to get the same result
b = fir1(80,0.5,kaiser(81,8));
freqz(b,1)
I would replace freqz(b,1) by:
fvtool(b)
Azzi Abdelmalek
2012 年 10 月 12 日
select one plot with figure editor then
x=get(gco,'Xdata')
y=get(gco,'Ydata')
plot(x,y)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Color and Styling についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!