diff general/funutils/@function_handle/ctranspose.m @ 39:c388f1c70669

Updated documentation and fixed some bugs in function algebra
author samer
date Tue, 29 Jan 2013 17:02:00 +0000
parents 9d24b616bb06
children
line wrap: on
line diff
--- a/general/funutils/@function_handle/ctranspose.m	Tue Jan 29 15:59:01 2013 +0000
+++ b/general/funutils/@function_handle/ctranspose.m	Tue Jan 29 17:02:00 2013 +0000
@@ -1,3 +1,6 @@
+% ctranspose - flip first two function arguments
+%
+% ctranspose :: (A,B,C{:}=>D{:}) -> (B,A,C{:}=>D{:}).
 function h=ctranspose(f,nin,nout)
 	fns = { @q21, @q2n; @qn1, @qnn };
 	if nargin<3, nout=nargout(f); end