When I go to plot a 3 by 28 subplot, none of them show up in the Figure window. I have 30 images of equal size. So I wanted to plot a 3X28 matrix to have all of the graphs in one single file later. (For ease of use!)
Following is a sample of my code (It continues in the same way): %Analysis of 2Aa subplot(28,3,1); plot(t,V1); xlabel('Time in Seconds'); ylabel('Signal 2Aa in Volts'); subplot(28,3,2); hist(V1); xlabel('Signal Range of 2Aa in Volts'); ylabel('No. of data points'); subplot(28,3,3); Y1=fft(signal1(:,1),NFFT); plot(f,abs(Y1(1:NFFT/4))); xlabel('Frequency (Hz)'); ylabel('Modulus of Y(f)'); title('Fourier Spectrum')
subplot(28,3,4);
plot(t,V2);
xlabel('Time in Seconds');
ylabel('Signal 2Ab in Volts');
subplot(28,3,5);
hist(V2);
xlabel('Signal Range of 2Ab in Volts');
ylabel('No. of data points');
subplot(28,3,6);
Y1=fft(signal2(:,1),NFFT);
plot(f,abs(Y1(1:NFFT/4)));
xlabel('Frequency (Hz)');
ylabel('Modulus of Y(f)');
title('Fourier Spectrum')
Stretching each image to a [1 4], [2 5] type ordering also causes image disruption. PLS HELP! THANKS!
0 Comments
Sign in to comment.