how can plot the region of convergence?
12 ビュー (過去 30 日間)
古いコメントを表示
hi all can you guide me how can plot the region of convergence? for example for below image?

thanks
0 件のコメント
回答 (2 件)
Image Analyst
2016 年 4 月 3 日
See the FAQ for how to create and plot circles http://matlab.wikia.com/wiki/FAQ#How_do_I_create_a_circle.3F
You can also use fill() or patch() to fill it with color, so you might plot a filled gray one, and then put "hold on" and place a smaller white one on top of it.
4 件のコメント
Image Analyst
2016 年 4 月 3 日
Try calling rectangle again with a smaller radius, so you'd have two of them.
Paul
2024 年 12 月 24 日
For example, suppose the region of convergence is 0.5 < abs(z) < 1.5
h = polaraxes;
r = radiusregion(h,0.5,1.5);
h.RLim = [0 2];
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!