Getting a for loop to save a plot every step

조회 수: 7 (최근 30일)
HC98
HC98 2019년 12월 2일
답변: Star Strider 2019년 12월 2일
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?

답변 (1개)

Star Strider
Star Strider 2019년 12월 2일
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.

카테고리

Help CenterFile Exchange에서 Contour Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by