view m-toolbox/classes/@ao/findShortestVector.m @ 9:fbbfcd56e449 database-connection-manager

Remove dead code
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Mon, 05 Dec 2011 16:20:06 +0100
parents f0afece42f48
children
line wrap: on
line source

% findShortestVector Returns the length of the shortest vector in samples
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% DESCRIPTION: Returns the length of the shortest vector in samples
%
% CALL:        lmin = findShortestVector(as)
%
% VERSION:     $Id: findShortestVector.m,v 1.7 2009/12/22 22:32:12 mauro Exp $
%
% HISTORY: 14-05-07 M Hewitson
%             Creation
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function lmin = findShortestVector(as)

  lmin = 1e20;
  for jj=1:numel(as)
    len_as = len(as(jj));
    if len_as < lmin
      lmin = len_as;
    end
  end

end