资源简介
利用互相关计算两个信号的时延差,附程序注释。
代码片段和文件信息
clc ;
clear all;
close all
N=10000; %采样长度
Fs=500; %采样频率
n=0:N-1;
t=n/Fs; %时间序列
t1=(n+10)/Fs; %延迟0.02s;
lag=200;
%信号1
x=cos(2*pi*10*t);
% x=awgn(x10);
%信号2
y=cos(2*pi*10*t1);
% y=awgn(y10);
%互相关
[clags]=xcorr(xy);
subplot(211);
plot(tx‘r‘);
axis([0 0.9 -1 1]);
hold on;
plot(ty
评论
共有 条评论