Mapping Matrix that maps Qk+1 to Qk for a beta-Wishart Distribution, but without n on the diagonal
Mapping Matrix that maps Qk+1 to Qk for a beta-Wishart Distribution, but without n on the diagonal
This function computes the matrix that maps Qk+1 to Qk when W∼Wmβ(n,Σ).
dkmap(k, alpha =2)
Arguments
k: The order of the mapping matrix Dk (a positive integer)
alpha: The type of beta-Wishart distribution (α=2/β):
1/2: Quaternion Wishart
1: Complex Wishart
2: Real Wishart (default)
Returns
A matrix that maps Qk+1 to Qk, but without n on the diagonal.
Examples
# Example 1: Compute the mapping matrix for k = 2, real Wishartdkmap(2)# Example 2: Compute the mapping matrix for k = 1, complex Wishartdkmap(1,1)# Example 3: Compute the mapping matrix for k = 2, quaternion Wishartdkmap(2,1/2)