Перекрестная корреляция с многоканальным входом

Сгенерируйте три экспоненциальные последовательности с 11 выборками, заданные как 0.4n, 0.7n, и 0.999n, с n0. Использование stem3 для построения графиков последовательностей один за другим.

N = 11;
n = (0:N-1)';

a = 0.4;
b = 0.7;
c = 0.999;

xabc = [a.^n b.^n c.^n];

stem3(n,1:3,xabc','filled')
ax = gca;
ax.YTick = 1:3;
view(37.5,30)

Figure contains an axes. The axes contains an object of type stem.

Вычислите автокорреляции и взаимные перекрестные корреляции последовательностей. Вывод лагов, чтобы вы не должны отслеживать их. Нормализуйте результат, чтобы автокорреляции имели единичное значение при нулевой задержке.

[cr,lgs] = xcorr(xabc,'coeff');

for row = 1:3
    for col = 1:3
        nm = 3*(row-1)+col;
        subplot(3,3,nm)
        stem(lgs,cr(:,nm),'.')
        title(sprintf('c_{%d%d}',row,col))
        ylim([0 1])
    end
end

Figure contains 9 axes. Axes 1 with title c_{11} contains an object of type stem. Axes 2 with title c_{12} contains an object of type stem. Axes 3 with title c_{13} contains an object of type stem. Axes 4 with title c_{21} contains an object of type stem. Axes 5 with title c_{22} contains an object of type stem. Axes 6 with title c_{23} contains an object of type stem. Axes 7 with title c_{31} contains an object of type stem. Axes 8 with title c_{32} contains an object of type stem. Axes 9 with title c_{33} contains an object of type stem.

Ограничьте расчет лагами между -5 и 5.

[cr,lgs] = xcorr(xabc,5,'coeff');

for row = 1:3
    for col = 1:3
        nm = 3*(row-1)+col;
        subplot(3,3,nm)
        stem(lgs,cr(:,nm),'.')
        title(sprintf('c_{%d%d}',row,col))
        ylim([0 1])
    end
end

Figure contains 9 axes. Axes 1 with title c_{11} contains an object of type stem. Axes 2 with title c_{12} contains an object of type stem. Axes 3 with title c_{13} contains an object of type stem. Axes 4 with title c_{21} contains an object of type stem. Axes 5 with title c_{22} contains an object of type stem. Axes 6 with title c_{23} contains an object of type stem. Axes 7 with title c_{31} contains an object of type stem. Axes 8 with title c_{32} contains an object of type stem. Axes 9 with title c_{33} contains an object of type stem.

Вычисление объективных оценок автокорреляций и взаимных перекрестных корреляций. По умолчанию лаги выполняются между -(N-1) и N-1.

cu = xcorr(xabc,'unbiased');

for row = 1:3
    for col = 1:3
        nm = 3*(row-1)+col;
        subplot(3,3,nm)
        stem(-(N-1):(N-1),cu(:,nm),'.')
        title(sprintf('c_{%d%d}',row,col))
    end
end

Figure contains 9 axes. Axes 1 with title c_{11} contains an object of type stem. Axes 2 with title c_{12} contains an object of type stem. Axes 3 with title c_{13} contains an object of type stem. Axes 4 with title c_{21} contains an object of type stem. Axes 5 with title c_{22} contains an object of type stem. Axes 6 with title c_{23} contains an object of type stem. Axes 7 with title c_{31} contains an object of type stem. Axes 8 with title c_{32} contains an object of type stem. Axes 9 with title c_{33} contains an object of type stem.

См. также

Функции

Для просмотра документации необходимо авторизоваться на сайте