필터 지우기
필터 지우기

how can i plot different curves when both are variables ?

조회 수: 1 (최근 30일)
AMIT CHITTORA
AMIT CHITTORA 2018년 6월 7일
댓글: AMIT CHITTORA 2018년 6월 11일
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')

카테고리

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

제품


릴리스

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by