Is it possible to plot multiple functions in one plot?
Mostra commenti meno recenti
What specific matlab commands are needed to do this? For example, I am trying to place three functions that can fit into one figure with the following functions: y=x^2 y=-5x+2 y=4
Risposte (1)
Star Strider
il 14 Feb 2015
There are likely several options. If you mean on one set of axes, the hold function is likely best. If you want each on separate axes in the same figure, use subplot.
Illustrating:
x = linspace(-5, 5);
y1=x.^2;
y2=-5*x+2 ;
y3=4*ones(size(x));
figure(1)
plot(x, y1)
hold on
plot(x, y2)
plot(x, y3)
hold off
grid
figure(2)
subplot(3,1,1)
plot(x, y1)
grid
subplot(3,1,2)
plot(x, y2)
grid
subplot(3,1,3)
plot(x, y3)
grid
Categorie
Scopri di più su Subplots in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!