Hello, i have problem with making a graph.
Show older comments
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 Comments
darova
on 13 Apr 2019
Use . (dot) for elementwise operations
w = pi./(2*t);
Ek = J*w.^2/2;
plot(w,Ek,'or')
Jurij Rudenson
on 23 Apr 2019
Jurij Rudenson
on 23 Apr 2019
Walter Roberson
on 23 Apr 2019
p2 = p1 .* (h1./h2).^g;
Answers (0)
Categories
Find more on Networks in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!