How to scale the axis while ploting some function which changes its size on every iteration?

9 views (last 30 days)
I have made a program for fem transient analysis for wave propagation. The wave seems to change its size due to time integration method(energy is not conserved). I used 'plot' command with 'drawnow', the axis keep changing size I want to fix y-axis to a scale at-least the maximum value of the wave so that I can see bigger picture of what is going on. I try to use ylim([min max]) but program does not follow this command at all.

Accepted Answer

Amit
Amit on 2 Jan 2014
Use ylim([min max]) right after plot(x,y). I think you might have put ylim after drawnow, this adjust the y-axis but after plotting it.

More Answers (0)

Categories

Find more on Graphics Performance in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!