annotate general/arrutils/flatten.m @ 27:5de03f77dae1

Added documentation about types and revised arrow type specifications.
author samer
date Sat, 19 Jan 2013 14:22:09 +0000
parents 03694e5c8365
children
rev   line source
samer@4 1 % flatten - convert array into column vector
samer@4 2 %
samer@4 3 % flatten :: [[size]]->[[prod(size)]]
samer@13 4 function X=flatten(X), X=X(:); end