Filter löschen
Filter löschen

nested for loop

1 Ansicht (letzte 30 Tage)
Baba
Baba am 3 Nov. 2011
This code gives me 6 subplots like I need, howerver, what I'd like to do is for each subplot i'd like the X to switch trhough 5 other letters.
for i=1:6;
Zu = 1;
subplot(3,2,i)
Str = sprintf('X%d',Zu );
Hs=spectrum.periodogram;
psdest = psd(Hs,eval(Str),'Fs',Fs);
semilogx(psdest.Frequencies,10*log10(psdest.Data));
grid on;
xlabel('Frequency (Hz)')
ylabel('dB/Hz')
title(Str);
end

Akzeptierte Antwort

Fangjun Jiang
Fangjun Jiang am 3 Nov. 2011
Letter={'X','Y','Z','K','V'};
for i=1:6
for k=1:length(Letter)
str=sprintf('%s%d',Letter{k},i);
end
end

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by