Parent Directory
|
Revision Log
|
Revision Graph
matlab routines to analyze latest seaice thermo adjoint using IFenty code
1 | atn | 1.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 |