Subvectors
A subvector is a vector obtained by selecting a subset of components from a given vector, while preserving their original order. If x is a vector in R^n and I is a subset of {1,...,n}, then the subvector x_I consists of the components x_i with i in I, listed in increasing order of i. If I consists of consecutive indices, the resulting vector is sometimes called a block or contiguous subvector.
Notation and construction: For x ∈ R^n and I ⊆ {1,...,n}, x_I ∈ R^|I| denotes the subvector determined by
Examples: Let x = (3, 5, 7, 2). Then x_{1,3} = (3, 7) and x_{2,4} = (5, 2). The subvectors
In probability and statistics, subvectors are defined similarly for random vectors. If X is a random vector
Applications and notes: Subvectors are used in feature selection, dimensionality reduction, and block-structured analyses. They facilitate