mini

PURPOSE ^

Computes the maximum value in a matrix

SYNOPSIS ^

function [m]=mini(a);

DESCRIPTION ^

 Computes the maximum value in a matrix

 USE  m=maxi(a)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 % Computes the maximum value in a matrix
0002 %
0003 % USE  m=maxi(a)
0004 function [m]=mini(a);
0005 
0006 m=min(min(a));

Generated on Fri 07-Mar-2014 13:28:33 by m2html © 2005