indx_UnivMomCum {MultiStatM} | R Documentation |
A vector of indexes to select the moments and cumulants of the single components of the random vector X for which a T-vector of moments and cumulants is available
indx_UnivMomCum(d, q)
d |
dimension of a vector X |
q |
power of the Kronecker product |
A vector of indexes
Other Matrices and commutators:
indx_Commutator_Kmn()
,
indx_Commutator_Kperm()
,
indx_Commutator_Mixing()
,
indx_Commutator_Moment()
,
indx_Elimination()
,
indx_Qplication()
,
indx_Symmetry()
,
matr_Commutator_Kmn()
,
matr_Commutator_Kperm()
,
matr_Commutator_Mixing()
,
matr_Commutator_Moment()
,
matr_Elimination()
,
matr_Qplication()
,
matr_Symmetry()
## For a 3-variate skewness and kurtosis vectors estimated from data, extract
## the skewness and kurtosis estimates for each of the single components of the vector
alpha<-c(10,5,0)
omega<-diag(rep(1,3))
X<-distr_SkewNorm_Rand(200, omega, alpha)
EVSK<-Esti_EVSK(X)
## Get the univariate skewness and kurtosis for X1,X2,X3
EVSK$estSkew[indx_UnivMomCum(3,3)]
EVSK$estKurt[indx_UnivMomCum(3,4)]