ROWVEC-returnamatrixreshapedasarowvectorY=vlt.data.rowvec(X)ReturnsthecontentsofthematrixXasarowvectorYthatisMx1,
whereMistheproductofallthesizesofthedimensionsofX(M=PROD(SIZE(X))).
vlt.data.rowvecisequivalenttoY=X(:)'; This function is useful for addressing all of the elements of a matrix as a vector when X is a subset of another matrix. See also: vlt.data.colvec Example: A = rand(5,5) Y = vlt.data.rowvec(A(1:3,1:2)) % returns points in rows 1:3, columns 1:2