multiple r values for multiple theta values

조회 수: 3 (최근 30일)
Allan Asturias
Allan Asturias 2021년 3월 6일
댓글: Allan Asturias 2021년 3월 7일
theta=[pi,3,2.8,2.5,2,pi/2,1.3,1.0,0.75,0.5];
r=(pi-theta)/(sin(theta))
x=r*cos(theta)
y=r*sin(theta)
plot(x,y)
I was wondering how I can get it to give a different r value for each theta value. For example
theta=pi r=0 x=0 y=0
theta=3 r=1.0033 x=-0.9933 y=0.1416
theta=2.8 r=1.0197 x=-0.9608 y=0.3416
each theta value is used to get a differnt r value that is then used to get a different x and y point. Currently it only gives one r value and keeps using it for the differnt inputs. It should give a different r values for each theta value. Thank you.

답변 (1개)

David Goodmanson
David Goodmanson 2021년 3월 6일
편집: David Goodmanson 2021년 3월 6일
Hi Allan
For an element-by-element calculation, use ./ and .* rather than / and *
theta=[pi,3,2.8,2.5,2,pi/2,1.3,1.0,0.75,0.5];
r=(pi-theta)./(sin(theta))
x=r.*cos(theta);
y=r.*sin(theta);
plot(x,y)
r =
0 1.0033 1.0197 1.0721 1.2555 1.5708 1.9112 2.5451 3.5086 5.5099

카테고리

Help CenterFile Exchange에서 Specialized Power Systems에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by