how can i plot different curves when both are variables ?

v= 5:2.5:40; m= 191:10:271; kinetic energy = 0.5 * m*v that i want to plot KE for different mass values.

답변 (1개)

Kodavati Mahendra
Kodavati Mahendra 2018년 6월 7일
v= 5:2.5:40;
m= 191:10:271;
for i=1:length(m)
KE(i,:) = 0.5*m(i).*v;
end
plot(m,KE);
legend(string(v));
xlabel('m')
ylabel('KE')

카테고리

도움말 센터File Exchange에서 Interpolation에 대해 자세히 알아보기

제품

릴리스

R2018a

질문:

2018년 6월 7일

댓글:

2018년 6월 11일

Community Treasure Hunt

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

Start Hunting!

Translated by