Borrar filtros
Borrar filtros

how can i plot different curves when both are variables ?

1 visualización (últimos 30 días)
AMIT CHITTORA
AMIT CHITTORA el 7 de Jun. de 2018
Comentada: AMIT CHITTORA el 11 de Jun. de 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.

Respuestas (1)

Kodavati Mahendra
Kodavati Mahendra el 7 de Jun. de 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')

Categorías

Más información sobre Interpolation en Help Center y File Exchange.

Productos


Versión

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by