No BSD License  

Highlights from
Automatic Spectral Analysis

from Automatic Spectral Analysis by Stijn de Waele
Automatic spectral analysis for irregular sampling/missing data, analysis of spectral subband.

timesv(M,a);
function Ma = timesv(M,a);
%function Ma = timesv(M,a);
%
% Multiplies a by M:
% a(:,:,i) = M*a(:,:,i)
%
% See also FILTER.

dima = size(a,1);
I = eye(dima);
Ma = armafilterv(a,I,M);

Contact us at files@mathworks.com