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.

dets(a)
function d = dets(a)

%function d = dets(a)
%
% Provides a vector of determinants of the vector LTI a

%S. de Waele, March 2003.


a_len = kingsize(a,3);
d = zeros(a_len,1);

for t = 1:a_len,
   d(t) = det(a(:,:,t));
end

Contact us at files@mathworks.com