How do i introduce Loop for multiple subplots ??
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Add
am 22 Mär. 2016
Beantwortet: Walter Roberson
am 22 Mär. 2016
Hey everyone, I wrote this code
close all; clear all;
data=xlsread('DTEC_SGOC_new.xlsx');
% Create figure
figure1 = figure;
% Create subplot
subplot1 = subplot(5,6,1,'Parent',figure1,... 'XTickLabel',{'16','17','18','19','20','21','22'},... 'XTick',[0 120 240 360 480 600 720]);
xlim(subplot1,[0 720]);
ylim(subplot1,[-1 1]);
box(subplot1,'on');
hold(subplot1,'all');
plot(data(:,1)),'r';
Now, I want to repeat this in a for loop for the next 30 subplots plotting each column from my data. How do i do that ??
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 22 Mär. 2016
for K=1:30
subplot1 = subplot(5,6,K,....)
....
plot(data(:, K), 'r') ;
end
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Subplots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!