annotate sequences/@takewhile/extract.m @ 0:672052bd81f8

Initial partial import.
author samer
date Wed, 19 Dec 2012 22:38:28 +0000
parents
children
rev   line source
samer@0 1 function y=extract(o,dim,range)
samer@0 2 % EXTRACT - Extract a sub-array
samer@0 3 %
samer@0 4 % extract :: seq [[D]], natural, [[2]->natural]] -> [[D2]].
samer@0 5
samer@0 6 y=extract(source(o),dim,range);