Invisible axes for layered polar plot

조회 수: 1 (최근 30일)
Darth_Malloc
Darth_Malloc 2015년 2월 24일
댓글: Stephen23 2015년 2월 28일
I am trying to create a polar plot with invisible axes (in order to create a layered polar plot with smaller instances of the same pattern.
I have used the statement
set(ax, 'Visible', 'off')
as shown in the example of overlay axes but I have not yet been able to produce the desired result.
Is what I am attempting to do possible in Matlab? If so, any suggestions would be much appreciated.
  댓글 수: 3
Darth_Malloc
Darth_Malloc 2015년 2월 25일
That is exactly what I am trying to do. This is my first use of Matlab, so I apologize if it is a stupid question.
Stephen23
Stephen23 2015년 2월 28일
Are the axes' scales or origins going to be different? Why do you need multiple axes? In MATLAB you can plot many things in one set of axes.

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

답변 (1개)

Umakant
Umakant 2015년 2월 24일
Not sure what do you mean by invisible axes in case of polar plots. Please take a look at the 'polar' function in MATLAB. Try the following commands to get a polar plot.
theta = 0:0.01:2*pi;
rho = sin(2*theta).*cos(2*theta);
figure
polar(theta,rho,'--r')
Refer to the following link for more information on 'polar' function: http://www.mathworks.com/help/releases/R2014b/matlab/ref/polar.html

카테고리

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