|
google matlab vec找到的
123456789101112131415161718
function x = vec(X)
% vec - convert array to vector
% -----------------------------
%
% x = vec(X)
%
% Input:
% ------
% X - input array
%
% Output:
% -------
% x - vector obtained from array
% NOTE: this allows better access to a simple built-in operation
x = X(:);
http://www.koders.com/matlab/fid2B4AC1F0BB4BF3FB3589851BCD838CAE423D9213.aspx?s=md5 |
|