|
clc
clear all
close all
N=200;
f0=10;
fs=100;
ts=1/fs;
tscale=[0:N-1]*ts;
sig1=sin(2*pi*f0*tscale);
xmax=max(sig1);
subplot(3,2,1)
plot(tscale,sig1,'b')
title('这是一个正弦函数');
xlabel('时间 /s');
ylabel('幅值 /mm');
ylim([-2*xmax 2*xmax]);
sum=0;
for k=2:1:5;
sig0=0.3*randn(N,1);
sigk=sig1+sig0';
sum=sum+sigk;
subplot(3,2,k)
plot(tscale,sigk,'k')
end
sig0=sum/4;
subplot(3,2,6)
plot(tscale,sig0,'r') |
|