how can i plot different curves when both are variables ?

1 Ansicht (letzte 30 Tage)
AMIT CHITTORA
AMIT CHITTORA am 7 Jun. 2018
Kommentiert: AMIT CHITTORA am 11 Jun. 2018
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.

Antworten (1)

Kodavati Mahendra
Kodavati Mahendra am 7 Jun. 2018
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')

Kategorien

Mehr zu Interpolation finden Sie in Help Center und File Exchange

Produkte


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by