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.

transposeLTI(a)
function c = transposeLTI(a)
%function c = transposeLTI(a)
%  The transpose of an LTI a
%  Where the pulsrespons at time
%  t is denoted
%  a(:,:,t)
%
%  The transpose is given by:
%
%  c(:,:,t) = a(:,:,-t)'
%  The indexes of c are shifted
%  until it starts at t=1.
%
% See also FILTERV.


c = flipdim(permute(a,[2 1 3]),3);

Contact us at files@mathworks.com