annotate general/arrutils/flatten.m @ 20:ed2629b7f02b

Added beginnings of some introductory blurb.
author samer
date Thu, 17 Jan 2013 13:33:36 +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