Plotting Multiple outputs from a function with multiple outputs

5 Ansichten (letzte 30 Tage)
Maria Raheb
Maria Raheb am 13 Feb. 2021
Beantwortet: CJ Vaughn am 13 Feb. 2021
Hello,
I am attempting to plot a bifurcation plot for a function that has multiple outputs. How do I plot A vs h1 and A vs h2? Apparently, plot(A,[h1, ~], A, [h2,~]) is not supported syntax. I'd like to plot A vs h1 and A vs h2 on the same plot. Any suggestions?
A = linspace((1-p)*B*(1-C),1);
[h1,~] = bifurcation_host_pops(A);
[~,h2] = bifurcation_host_pops(A);

Antworten (1)

CJ Vaughn
CJ Vaughn am 13 Feb. 2021
Hi Maria,
It is my understanding that you are looking for an answer on how to combine multiple plots onto the same graph.
Using the code provided, the following commands can be used to achieve this result:
plot(A,h1)
hold on
plot(A,h2)
hold off
You can find more information in the documentation here:

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Produkte


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by