how to plot all the results of for loop in one figure on same axis?

6 vues (au cours des 30 derniers jours)
Shabnam Sulthana Mohamed Isaque
Hello all,
i'm d i am trying to plot a beam bending on a time step in a same graph. The results of plot are in for loop. when i am plotting separate windows are opened for each iteration. is it possible to plot them on the same graph to show the variation in bending? can anyone help me how to do it.
for i = 1:n where n = 21
..............
bending = delp(1,:)
figure();hold on;
plot(-bending)
end

Réponses (1)

Joel Handy
Joel Handy le 27 Août 2019
Just move the figure(); command to before the for loop.

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by