How to plot all figures in only one plot?
    9 次查看(过去 30 天)
  
       显示 更早的评论
    
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
0 个评论
采纳的回答
  Alan Stevens
      
      
 2023-8-24
        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
更多回答(0 个)
另请参阅
类别
				在 Help Center 和 File Exchange 中查找有关 Axis Labels 的更多信息
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!





