Mercurial > hg > ishara
view general/numerical/array/minmax.m @ 42:ae596261e75f
Various fixes and development to audio handling
author | samer |
---|---|
date | Tue, 02 Dec 2014 14:51:13 +0000 |
parents | db7f4afd27c5 |
children |
line wrap: on
line source
function R=minmax(X,I) % minmax - return minimum and maximum along a particular dimension % % minmax :: [[N,M]], 1:natural -> [[2,M]]. % minmax :: [[N,M]], 2:natural -> [[N,2]]. % minmax :: [D:[[1,E]]], I:[E] -> [set(D,I,2)]. % % The most general type means that the return array is the same size % as the input array except that the size along the Ith dimension % becomes 2, first element is min, second is max. % % The functions is constructed so that it is idemponent: % minmax(X,I) == minmax(minmax(X,I),I) R= cat(I,min(X,[],I),max(X,[],I));