/[MITgcm]/MITgcm_contrib/ecco_darwin/MATLAB/mmax.m
ViewVC logotype

Contents of /MITgcm_contrib/ecco_darwin/MATLAB/mmax.m

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download)
Tue Oct 15 16:36:16 2019 UTC (4 years, 6 months ago) by dcarroll
Branch: MAIN
CVS Tags: HEAD
Update of flux-conserving bin average code

1 function mm=mmax(a)
2 % function MMAX(A)
3 % Return maximum value of matrix A
4 %
5 % See also MINMAX MMIN MMEAN
6
7 % D. Menemenlis (dimitri@ocean.mit.edu), 21 aug 94
8
9 ix=find(~isnan(a));
10 mm=max(a(ix));

  ViewVC Help
Powered by ViewVC 1.1.22