Help with plotting multiple angles/velocties
조회 수: 1 (최근 30일)
이전 댓글 표시
I am trying to generate multiple lines on a graph corresponding to velocities and launch angles. heres my basic code but how I do get it to loop with a single velocity but multiple launch angles?
thetaList=[0, .17453293 .52359878 .78539816 1.04719755 1.57079633];
for i = 1:length(thetaList)
theta=thetaList(i);
end
hold on
g= 9.81;
v0=[5]
tf=2.*v0.*sin(theta)/g;
t=0:0.01:tf;
x=v0*cos(theta)*t;
y=v0*sin(theta).*t - 0.5*g*t.^2;
plot(x,y)
댓글 수: 0
채택된 답변
KSSV
2018년 7월 11일
thetaList=[0, .17453293 .52359878 .78539816 1.04719755 1.57079633];
figure
hold on
for i = 1:length(thetaList)
theta=thetaList(i);
g= 9.81;
v0= 5 ;
tf=2.*v0.*sin(theta)/g;
t=0:0.01:tf;
x=v0*cos(theta)*t;
y=v0*sin(theta).*t - 0.5*g*t.^2;
plot(x,y)
end
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Line Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!