view general/arrutils/flatten.m @ 54:9bcf5e133bf0

Added from old stats library.
author samer
date Mon, 23 Feb 2015 16:08:09 +0000
parents 03694e5c8365
children
line wrap: on
line source
% flatten - convert array into column vector
%
% flatten :: [[size]]->[[prod(size)]]
function X=flatten(X), X=X(:); end