Hello, i have problem with making a graph.
Mostrar comentarios más antiguos
i want to plot a graph with Y-axis Ek (named Kinetic energy) and X-axis (Time). and i need to plot every t value in one graph. every t value (0.6 0.74 ... ) needs to be ploted as a point in the graph. please help me out.
m = 100; L = 1; a = 0.0058;
J = (m*L^2)/3+(m*a^2)/12 %value for equasion.
t = [0.6 0.74 0.86 0.98 1.2 1.37 1.58 1.87] %time points from sample.
w = pi/(2*t)
Ek = J*w^2/2; %kinetic energy.
4 comentarios
darova
el 13 de Abr. de 2019
Use . (dot) for elementwise operations
w = pi./(2*t);
Ek = J*w.^2/2;
plot(w,Ek,'or')
Jurij Rudenson
el 23 de Abr. de 2019
Jurij Rudenson
el 23 de Abr. de 2019
Walter Roberson
el 23 de Abr. de 2019
p2 = p1 .* (h1./h2).^g;
Respuestas (0)
Categorías
Más información sobre Networks en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!