how can plot the region of convergence?

조회 수: 27 (최근 30일)
sara
sara 2016년 4월 3일
답변: Paul 2024년 12월 24일
hi all can you guide me how can plot the region of convergence? for example for below image?
thanks

답변 (2개)

Image Analyst
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
Image Analyst 2016년 4월 3일
Try calling rectangle again with a smaller radius, so you'd have two of them.
sara
sara 2016년 4월 3일
thanks. this work true :)
Is there any way to fill out of the circle? like below?

댓글을 달려면 로그인하십시오.


Paul
Paul 2024년 12월 24일
Since 2024a, radiusregion looks like a reasonable approach to get started.
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];

카테고리

Help CenterFile Exchange에서 Lighting, Transparency, and Shading에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by