view m-toolbox/classes/@ao/findFsMin.m @ 26:ce4df2e95a55 database-connection-manager

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

% findFsMin Returns the min Fs of a set of AOs
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% DESCRIPTION: Returns the min Fs of a set of AOs
%
% CALL:        fsmin = findFsMin(as)
%
% VERSION:     $Id: findFsMin.m,v 1.3 2009/12/22 22:32:12 mauro Exp $
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

function fs = findFsMin(as)

  fs = realmax;
  for jj=1:numel(as)
    d = as(jj).data;
    if d.isprop('fs')
      if d.fs < fs
        fs = d.fs;
      end
    end
  end

end