필터 지우기
필터 지우기

Variable reconnaissance problem with function polar

조회 수: 2 (최근 30일)
federico trovarelli
federico trovarelli 2015년 5월 23일
답변: Walter Roberson 2015년 5월 26일
Hello,
I don' understand the reason why the funcion polar does not recognise rhop as a function o nu2?
I hope someone can help me. The error code is below
Thanks.
e2=0.0935;
p2=1.524;
OMEGA2=0.865;
omega2=5.864;
i2=0.0323;
nu2=2.6643:.01:3.003;
rhop2=p2*cos(nu2)\(1+e2*cos(nu2));
>> figure
>> polar(nu2,rhop2,'--r');
Error using polar (line 60)
THETA and RHO must be the same size.

답변 (2개)

Ashish Gudla
Ashish Gudla 2015년 5월 26일
I understand that you are trying to use POLAR function and running into error. As the error message states, the dimensions of 'nu2' and 'rhop2' are different.
From the code you provided 'nu2' is 1x34 double however 'rhop2' is a 34x34 double. For the POLAR function to plot correctly the dimensions need to match. Please refer to the following doc page for more information:

Walter Roberson
Walter Roberson 2015년 5월 26일
I suspect that instead of
rhop2=p2*cos(nu2)\(1+e2*cos(nu2));
that you mean
rhop2=p2*cos(nu2)./(1+e2*cos(nu2));

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by