How to plot a circle of some radius on a polar plot ?

조회 수: 79 (최근 30일)
L K
L K 2017년 3월 18일
편집: Ron Beck 2018년 3월 2일
eg. i want a small circle with origin as center of some radius...ON the POLAR plot

채택된 답변

Walter Roberson
Walter Roberson 2017년 3월 18일
th = linspace(0,2*pi,50);
r = 10;
polar(th,r+zeros(size(th)))
  댓글 수: 2
L K
L K 2017년 3월 18일
thanx :)
Ron Beck
Ron Beck 2018년 3월 2일
편집: Ron Beck 2018년 3월 2일
I have used this script and it works (changed polar to polarPlot) but can't run it as a function. Any ideas?

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

추가 답변 (1개)

Gabriel Malagon Carvajal
Gabriel Malagon Carvajal 2017년 9월 9일
When is not center in the origen?
  댓글 수: 1
Walter Roberson
Walter Roberson 2017년 9월 9일
%need centres for demo purposes
xc = randn() * 5; yc = randn() * 5;
%the work
th = linspace(0,2*pi,50);
r = 10;
[x,y] = pol2cart(th,r);
[th1, r1] = cart2pol( x+xc, y+yc );
polar(th1, r1);

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

카테고리

Help CenterFile Exchange에서 Polar Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by