[go: up one dir, main page]

Menu

[57f2a1]: / anal / row.m  Maximize  Restore  History

Download this file

10 lines (9 with data), 183 Bytes

1
2
3
4
5
6
7
8
9
% row.m : makes a vector or a matrix into a row vector
% GUISDAP v.1.60 96-05-27 Copyright Asko Huuskonen and Markku Lehtinen
%
%
% res=row(A)
%
function res=row(A)
%
res=A(:).';