Hello, i have problem with making a graph.
Afficher commentaires plus anciens
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 commentaires
darova
le 13 Avr 2019
Use . (dot) for elementwise operations
w = pi./(2*t);
Ek = J*w.^2/2;
plot(w,Ek,'or')
Jurij Rudenson
le 23 Avr 2019
Jurij Rudenson
le 23 Avr 2019
Walter Roberson
le 23 Avr 2019
p2 = p1 .* (h1./h2).^g;
Réponses (0)
Catégories
En savoir plus sur Networks dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!