Effacer les filtres
Effacer les filtres

How to plot all figures in only one plot?

3 vues (au cours des 30 derniers jours)
GULZAR
GULZAR le 24 Août 2023
Modifié(e) : Voss le 24 Août 2023
How to plot all figures in one plot (like hold on hold off command) using for loop. I don't need 12 subplots. I need 12 figures in one plot.
clc; clearvars; close all;
x=-10:0.1:10;
c=-6:5;
for i=1:length(c)
y=c(i)*x.^(2)+4*x+2;
subplot(3,4,i)
plot(x,y)
xlabel('x')
ylabel('y')
end

Réponse acceptée

Alan Stevens
Alan Stevens le 24 Août 2023
Here's one simple way:
x=-pi:0.1:pi;
c=-6:5;
figure
hold on
for i=1:length(c)
y=c(i)*x.^(2)+4*x+2;
plot(x,y)
end
xlabel('x')
ylabel('y')
hold off
  2 commentaires
GULZAR
GULZAR le 24 Août 2023
Thank you so much...
Voss
Voss le 24 Août 2023
Modifié(e) : Voss le 24 Août 2023
Another option, in case all plotted vectors have the same number of elements, is to make y a matrix:
x=-pi:0.1:pi;
c=-6:5;
figure
y=c.*x(:).^2+4*x(:)+2;
plot(x,y)
xlabel('x')
ylabel('y')

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Produits


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by