view general/arrutils/flatten.m @ 22:4f5015db91aa

Moved maxnormalise to unitmax
author samer
date Thu, 17 Jan 2013 14:23:21 +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