这是我的目标:
我试图找到一种方法来搜索数据信号并找到(索引)已知重复二进制数据序列所在的位置。然后,因为扩频码和解调是已知的,所以拉出对应的数据码片读取。目前,我相信 xcorr 会成功的。
这是我的问题:
我似乎无法从 xcorr 或 xcorr2 解释我的结果来给我正在寻找的东西。我在从我的 xcorr 函数的向量位置交叉引用到我的时间向量时遇到问题,或者在使用 xcorr 正确识别我的数据序列时遇到问题,或者两者兼而有之。可能存在其他可能性。
我在哪里/我有什么:
我创建了一个随机 BPSK 信号,该信号由感兴趣的数据序列和重复周期内的垃圾数据组成。我尝试使用 xcorr 处理它,这就是我卡住的地方。
这是我的代码:
%% Clear Variables
clc;
clear all, close all;
%% Create random data
nbits = 2^10;
ngarbage = 3*nbits;
data = randi([0,1],1,nbits);
garbage = randi([0,1],1,ngarbage);
stream = horzcat(data,garbage);
%% Convert from Unipolar to Bipolar Encoding
stream_b = 2*stream - 1;
%% Define Parameters
%%% Variable Parameters
nsamples = 20*nbits;
nseq = 5 %# Iterate stream nseq times
T = 10; %# Number of periods
Ts = 1; %# Symbol Duration
Es = Ts/2; %# Energy per Symbol
fc = 1e9; %# Carrier frequency
%%% Dependent Parameters
A = sqrt(2*Es/Ts); %# Amplitude of Carrier
omega = 2*pi*fc %# Frequency in radians
t = linspace(0,T,nsamples) %# Discrete time from 0 to T periods with nsamples samples
nspb = nsamples/length(stream) %# Number of samples per bit
%% Creating the BPSK Modulation
%# First we have to stretch the stream to fit the time vector. We can quickly do this using _
%# simple matrix manipulation.
% Replicate each bit nspb/nseq times
repStream_b = repmat(stream_b',1,nspb/nseq);
% Tranpose and replicate nseq times to be able to fill to t
modSig_proto = repmat(repStream_b',1,nseq);
% Tranpose column by column, then rearrange into a row vector
modSig = modSig_proto(:)';
%% The Carrier Wave
carrier = A*cos(omega*t);
%% Modulated Signal
sig = modSig.*carrier;
使用 XCORR
我xcorr2()
用来消除xcorr
不等向量的零填充效应。请参阅下面的评论以进行澄清。
corr = abs(xcorr2(data,sig); %# pull the absolute correlation between data and sig
[val,ind] = sort(corr(:),'descend') %# sort the correlation data and assign values and indices
ind_max = ind(1:nseq); %# pull the nseq highest valued indices and send to ind_max
现在,我认为这应该拉动 data 和 sig 之间的五个最高相关性。对于流的每次迭代,这些应该对应于流中数据的结束位,因为我认为这是数据与 sig 最强烈交叉相关的地方,但事实并非如此。有时最大值甚至不是一个流长度。所以我在这里很困惑。
问题
在一个三部分的问题中:
我错过了某个步骤吗?在这种情况下,我如何使用 xcorr 来查找数据和 sig 最密切相关的位置?
我的整个方法错了吗?我不应该寻找最大相关性吗?
或者我应该从另一个角度解决这个问题,id est,不使用 xcorr,也许使用过滤器或其他功能?