Mercurial > hg > ltpda
diff m-toolbox/classes/@ao/findFsMax.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/m-toolbox/classes/@ao/findFsMax.m Wed Nov 23 19:22:13 2011 +0100 @@ -0,0 +1,28 @@ +% findFsMax Returns the max Fs of a set of AOs +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% DESCRIPTION: Returns the max Fs of a set of AOs +% +% CALL: fsmax = findFsMax(as) +% +% VERSION: $Id: findFsMax.m,v 1.7 2009/12/22 22:32:12 mauro Exp $ +% +% HISTORY: 14-05-07 M Hewitson +% Creation +% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +function fs = findFsMax(as) + + fs = 0; + for jj=1:numel(as) + d = as(jj).data; + if d.isprop('fs') + if d.fs > fs + fs = d.fs; + end + end + end + +end +