CELLMIN is the jCell module of jLab.

 CELLMIN  Minimum of each element in a cell array.
 
    M=CELLMIN(X) where X is a cell array of N arrays, is equivalent to
   
       M(1,1)=MIN(X{1}(:)),  M(2,1)=MIN(X{2}(:)), ...,  M(N,1)=MIN(X{N}(:))
 
    thus returning an N x 1 array containing the minimum values of each
    element in the cell array.
 
    CELLMIN requires that X have four or fewer dimensions.
 
    See also JCELL.
 
    Usage: m=cellmin(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