QplicMatr | R Documentation |
Restores the duplicated/q-plicated elements which are eliminated by EliminMatr in a T-product of vectors of dimension d.
QplicMatr(d, q, useSparse = FALSE)
d |
dimension of a vector x |
q |
power of the Kronecker product |
useSparse |
TRUE or FALSE. |
Note: since the algorithm of elimination is not unique, q-plication works together with the function EliminMatr only.
Qplication matrix of order d^q \times \eta_{d,q}
, see (1.30), p.15.
If useSparse=TRUE
an object of the class "dgCMatrix" is produced.
Gy. Terdik, Multivariate statistical methods - going beyond the linear, Springer 2021, p.21, (1.31)
Other Matrices and commutators:
EliminIndx()
,
EliminMatr()
,
QplicIndx()
,
SymIndx()
,
SymMatr()
,
UnivMomCum()
x<-c(1,2,3)
y<-kronecker(kronecker(x,x),x)
## Distinct elements of y
z<-as.matrix(EliminMatr(3,3))%*%y
## Restore eliminated elements in z
as.vector(QplicMatr(3,3)%*%z)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.