Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

vec

Vectorize a matrix


Description

This function returns a column vector that is a stack of the columns of x, an m by n matrix.

Usage

vec(x)

Arguments

x

a matrix

Value

A matrix with m\;n rows and one column.

Author(s)

Frederick Novomestky fnovomes@poly.edu

References

Magnus, J. R. and H. Neudecker (1999) Matrix Differential Calculus with Applications in Statistics and Econometrics, Second Edition, John Wiley.

Examples

x <- matrix( seq( 1, 16, 1 ), nrow=4, byrow=TRUE )
print( x )
vecx <- vec( x )
print( vecx )

matrixcalc

Collection of functions for matrix calculations

v1.0-3
GPL (>= 2)
Authors
Frederick Novomestky <fnovomes@poly.edu>
Initial release
2012-09-12

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.