Mercurial > hg > ishara
annotate sequences/@seq/minmax.m @ 19:1eb0ea29ec40
Doesn't belong here.
author | samer |
---|---|
date | Thu, 17 Jan 2013 13:32:19 +0000 |
parents | 3f77126f7b5f |
children |
rev | line source |
---|---|
samer@3 | 1 |
samer@3 | 2 % minmax - minmax for sequences operates over ENTIRE sequence |
samer@3 | 3 % |
samer@3 | 4 % minmax :: [D:[[1,E]]], I:[E] -> [set(D,I,2)]. |
samer@3 | 5 % |
samer@3 | 6 % If you want minmax on a per-buffer basis, use fnseq: |
samer@3 | 7 % R=fnseq(@(x)minmax(x,dim),X) |
samer@3 | 8 function R=minmax(X,dim) |
samer@3 | 9 R=foldl(@(r,t)minmax(cat(dim,r,t),dim),[],X); |
samer@3 | 10 end |