annotate sequences/@seq/minmax.m @ 3:3f77126f7b5f
First major revision of sequence library, now using classdef form, STILL A BIT BROKEN!
author |
samer |
date |
Wed, 09 Jan 2013 22:22:21 +0000 |
parents |
|
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
|