Vectorization (mathematics)
{{Short description|Conversion of a matrix or a tensor to a vector}}
{{other uses|Vectorization (disambiguation){{!}}Vectorization}}
In mathematics, especially in linear algebra and matrix theory, the vectorization of a matrix is a linear transformation which converts the matrix into a vector. Specifically, the vectorization of a {{nowrap|m × n}} matrix A, denoted vec(A), is the {{nowrap|mn × 1}} column vector obtained by stacking the columns of the matrix A on top of one another:
Here, represents the element in the i-th row and j-th column of A, and the superscript denotes the transpose. Vectorization expresses, through coordinates, the isomorphism between these (i.e., of matrices and vectors) as vector spaces.
For example, for the 2×2 matrix , the vectorization is .
The connection between the vectorization of A and the vectorization of its transpose is given by the commutation matrix.
Compatibility with Kronecker products
The vectorization is frequently used together with the Kronecker product to express matrix multiplication as a linear transformation on matrices. In particular,
for matrices A, B, and C of dimensions k×l, l×m, and m×n.The identity for row-major vectorization is .
For example, if (the adjoint endomorphism of the Lie algebra {{nowrap|gl(n, C)}} of all n×n matrices with complex entries), then , where is the n×n identity matrix.
There are two other useful formulations:
\operatorname{vec}(ABC) &= (I_n\otimes AB)\operatorname{vec}(C) = (C^\mathrm{T}B^\mathrm{T}\otimes I_k) \operatorname{vec}(A) \\
\operatorname{vec}(AB) &= (I_m \otimes A) \operatorname{vec}(B) = (B^\mathrm{T}\otimes I_k) \operatorname{vec}(A)
\end{align}
More generally, it has been shown that vectorization is a self-adjunction in the monoidal closed structure of any category of matrices.{{cite journal |first1=H. D. |last1=Macedo |first2=J. N. |last2=Oliveira |title=Typing Linear Algebra: A Biproduct-oriented Approach |journal=Science of Computer Programming |volume=78 |issue=11 |year=2013 |pages=2160–2191 |doi=10.1016/j.scico.2012.07.012 |arxiv=1312.4818 |s2cid=9846072 }}
Compatibility with Hadamard products
Vectorization is an algebra homomorphism from the space of {{nowrap|n × n}} matrices with the Hadamard (entrywise) product to Cn2 with its Hadamard product:
Compatibility with inner products
Vectorization is a unitary transformation from the space of n×n matrices with the Frobenius (or Hilbert–Schmidt) inner product to Cn2:
where the superscript † denotes the conjugate transpose.
Vectorization as a linear sum
The matrix vectorization operation can be written in terms of a linear sum. Let X be an {{nowrap|m × n}} matrix that we want to vectorize, and let ei be the i-th canonical basis vector for the n-dimensional space, that is . Let Bi be a {{nowrap|(mn) × m}} block matrix defined as follows:
\mathbf{B}_i = \begin{bmatrix}
\mathbf{0} \\
\vdots \\
\mathbf{0} \\
\mathbf{I}_m \\
\mathbf{0} \\
\vdots \\
\mathbf{0}
\end{bmatrix}
= \mathbf{e}_i \otimes \mathbf{I}_m
Bi consists of n block matrices of size {{nowrap|m × m}}, stacked column-wise, and all these matrices are all-zero except for the i-th one, which is a {{nowrap|m × m}} identity matrix Im.
Then the vectorized version of X can be expressed as follows:
Multiplication of X by ei extracts the i-th column, while multiplication by Bi puts it into the desired position in the final vector.
Alternatively, the linear sum can be expressed using the Kronecker product:
Half-vectorization
For a symmetric matrix A, the vector vec(A) contains more information than is strictly necessary, since the matrix is completely determined by the symmetry together with the lower triangular portion, that is, the {{nowrap|n(n + 1)/2}} entries on and below the main diagonal. For such matrices, the half-vectorization is sometimes more useful than the vectorization. The half-vectorization, vech(A), of a symmetric {{nowrap|n × n}} matrix A is the {{nowrap|n(n + 1)/2 × 1}} column vector obtained by vectorizing only the lower triangular part of A:
For example, for the 2×2 matrix , the half-vectorization is .
There exist unique matrices transforming the half-vectorization of a matrix to its vectorization and vice versa called, respectively, the duplication matrix and the elimination matrix.
Programming language
Programming languages that implement matrices may have easy means for vectorization.
In Matlab/GNU Octave a matrix A
can be vectorized by A(:)
.
GNU Octave also allows vectorization and half-vectorization with vec(A)
and vech(A)
respectively. Julia has the vec(A)
function as well.
In Python NumPy arrays implement the flatten
method, while in R the desired effect can be achieved via the c()
or as.vector()
functions or, more efficiently, by removing the dimensions attribute of a matrix A
with dim(A) <- NULL
. In R, function vec()
of package 'ks' allows vectorization and function vech()
implemented in both packages 'ks' and 'sn' allows half-vectorization.{{cite web |first=Tarn |last=Duong |date=2018 |title=ks: Kernel Smoothing |work=R package version 1.11.0 |url=https://cran.r-project.org/package=ks }}{{cite web |first=Adelchi |last=Azzalini |date=2017 |title=The R package 'sn': The Skew-Normal and Related Distributions such as the Skew-t |work=R package version 1.5.1 |url=https://cran.r-project.org/package=sn }}{{cite book |first=Hrishikesh D. |last=Vinod |title=Hands-on Matrix Algebra Using R: Active and Motivated Learning with Applications |location=Singapore |publisher=World Scientific |year=2011 |isbn=978-981-4313-69-8 |chapter=Simultaneous Reduction and Vec Stacking |pages=233–248 |via=Google Books |chapter-url=https://books.google.com/books?id=oXzkJwutS1UC&pg=PA233 }}
Applications
Vectorization is used in matrix calculus and its applications in establishing e.g., moments of random vectors and matrices, asymptotics, as well as Jacobian and Hessian matrices.{{cite book
|last1=Magnus |first1=Jan |last2=Neudecker |first2=Heinz |title=Matrix differential calculus with applications in statistics and econometrics |publisher=John Wiley |location=New York |year=2019 |isbn=9781119541202 }}
It is also used in local sensitivity and statistical diagnostics.{{Cite journal| last1=Liu|first1=Shuangzhe| last2=Leiva|first2=Victor| last3=Zhuang|first3=Dan| last4=Ma|first4=Tiefeng| last5=Figueroa-Zúñiga|first5=Jorge I.| date=March 2022|title=Matrix differential calculus with applications in the multivariate linear model and its diagnostics | journal=Journal of Multivariate Analysis| language=en| volume=188| pages=104849| doi=10.1016/j.jmva.2021.104849 | doi-access=free}}
Notes
{{reflist|group=note}}