Mercurial > hg > ishara
view general/funutils/@function_handle/plus.m @ 42:ae596261e75f
Various fixes and development to audio handling
author | samer |
---|---|
date | Tue, 02 Dec 2014 14:51:13 +0000 |
parents | fbc0540a9208 |
children |
line wrap: on
line source
function h=plus(f,g) % plus - Constructs parallel composition of two functions % % plus :: (A1->B1), (A2->B2) -> (A1,A2->B1,B2). h=@(x,y)deal(f(x),g(y)); end