how can i plot different curves when both are variables ?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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.
0 commentaires
Réponses (1)
Kodavati Mahendra
le 7 Juin 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')
Voir également
Catégories
En savoir plus sur Interpolation dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!