/[MITgcm]/MITgcm/verification/lab_sea/matlab/mmax.m
ViewVC logotype

Contents of /MITgcm/verification/lab_sea/matlab/mmax.m

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


Revision 1.2.4.1 - (show annotations) (download)
Sat Feb 15 12:40:31 2003 UTC (21 years, 2 months ago) by dimitri
Branch: ecco-branch
CVS Tags: ecco_c50_e32, ecco_c50_e33, ecco_c50_e30, ecco_c50_e31, ecco_c51_e34d, ecco_c51_e34e, ecco_c51_e34f, ecco_c51_e34g, ecco_c51_e34a, ecco_c51_e34b, ecco_c51_e34c, icebear5, icebear4, icebear3, icebear2, ecco_c50_e29, ecco_c50_e28, ecco_c50_e33a, ecco_c51_e34, ecco_c44_e27
Branch point for: icebear
Changes since 1.2: +0 -0 lines
o added verification/lab_sea as per release1_p12_pre

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