how can i plot different curves when both are variables ?
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
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 Center 和 File Exchange 中查找有关 Interpolation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!