Mercurial > hg > ishara
view general/cellutils/@cell/zipwith.m @ 9:45aaf9b2d7b0
Moved high-order sequence/list functions to @cell class.
author | samer |
---|---|
date | Mon, 14 Jan 2013 15:49:04 +0000 |
parents | |
children |
line wrap: on
line source
function Y=zipwith(fn,varargin) % zipwith - Zip cell arrays with a function % % zipwith :: ( % (D1,...,Dn)->R ~ function of n arguments, % {[size]->D1}, ..., {[size]->Dn} ~ n cell arrays of appropriate types % ) -> {[size]->R} ~ cell array of results Y=cellzip(fn,varargin{:});