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

Сгенерируйте три экспоненциальных последовательности с 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 object. The axes object 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 objects. Axes object 1 with title c indexOf 1 1 baseline contains an object of type stem. Axes object 2 with title c indexOf 1 2 baseline contains an object of type stem. Axes object 3 with title c indexOf 1 3 baseline contains an object of type stem. Axes object 4 with title c indexOf 2 1 baseline contains an object of type stem. Axes object 5 with title c indexOf 2 2 baseline contains an object of type stem. Axes object 6 with title c indexOf 2 3 baseline contains an object of type stem. Axes object 7 with title c indexOf 3 1 baseline contains an object of type stem. Axes object 8 with title c indexOf 3 2 baseline contains an object of type stem. Axes object 9 with title c indexOf 3 3 baseline 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 objects. Axes object 1 with title c indexOf 1 1 baseline contains an object of type stem. Axes object 2 with title c indexOf 1 2 baseline contains an object of type stem. Axes object 3 with title c indexOf 1 3 baseline contains an object of type stem. Axes object 4 with title c indexOf 2 1 baseline contains an object of type stem. Axes object 5 with title c indexOf 2 2 baseline contains an object of type stem. Axes object 6 with title c indexOf 2 3 baseline contains an object of type stem. Axes object 7 with title c indexOf 3 1 baseline contains an object of type stem. Axes object 8 with title c indexOf 3 2 baseline contains an object of type stem. Axes object 9 with title c indexOf 3 3 baseline 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 objects. Axes object 1 with title c indexOf 1 1 baseline contains an object of type stem. Axes object 2 with title c indexOf 1 2 baseline contains an object of type stem. Axes object 3 with title c indexOf 1 3 baseline contains an object of type stem. Axes object 4 with title c indexOf 2 1 baseline contains an object of type stem. Axes object 5 with title c indexOf 2 2 baseline contains an object of type stem. Axes object 6 with title c indexOf 2 3 baseline contains an object of type stem. Axes object 7 with title c indexOf 3 1 baseline contains an object of type stem. Axes object 8 with title c indexOf 3 2 baseline contains an object of type stem. Axes object 9 with title c indexOf 3 3 baseline contains an object of type stem.

Смотрите также

Функции

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