필터 지우기
필터 지우기

How can i polar plot R1 without theta .the equation R1=7 means that no matter what angle we’ve got the distance from the origin must be 7. when i plot it it doesn't show in the figures as R2 and R3 does!!!

조회 수: 2 (최근 30일)
theta = linspace(0,2*pi,1000); R1=7; R2 = 2 - 2*sin(theta); R3=2+4*cos(theta);

채택된 답변

Steven Lord
Steven Lord 2017년 11월 23일
Make R1 a vector of the same length as theta with all its elements equal to 7.
R1 = repmat(7, size(theta));

추가 답변 (0개)

카테고리

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