Getting a for loop to save a plot every step
2 views (last 30 days)
Show older comments
Good evening,
I'll keep this brief but I'm looking to see how I can write a for loop which takes a range of constants, applies them to an equation and plots the output after ach step. Is there a way to do this without manually defining a new equation and using hold on?
0 Comments
Answers (1)
Star Strider
on 2 Dec 2019
Use the same equation and pass the different parameters as extra parameters in a loop. See the documentation secton on Passing Extra Parameters to understand how to do this. Then use one or more loops to select the parameters at each iteration. How you choose to plot them — in a single axis using hold or as subplots (or using the stackedplot function) — is your choice.
A very efficient way to do this is to use the ndgrid or meshgrid function to create matrices of the parameters, then reshape them to column vectors (using reshape or the (:) subscript convention). That way, you can use one loop to use all combinations of your parameters.
0 Comments
See Also
Categories
Find more on Contour Plots 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!