annotate sequences/@seq/minmax.m @ 61:eff6bddf82e3
tip
Finally implemented perceptual brightness thing.
author |
samer |
date |
Sun, 11 Oct 2015 10:20:42 +0100 |
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
|