CELLMAX is the jCell module of jLab.

 CELLMAX  Maximum of each element in a cell array.
 
    M=CELLMAX(X) where X is a cell array of N arrays, is equivalent to
   
       M(1,1)=MAX(X{1}(:)),  M(2,1)=MAX(X{2}(:)),...,  M(N,1)=MAX(X{N}(:))
 
    thus returning an N x 1 array containing the maximum values of each
    element in the cell array.
 
    CELLMAX requires that X have four or fewer dimensions.
 
    See also JCELL.
 
    Usage: m=cellmax(x);
    __________________________________________________________________
    This is part of JLAB --- type 'help jlab' for more information
    (C) 2009 J.M. Lilly --- type 'help jlab_license' for details

contents | allhelp | index