Wishart Ensemble

Defines Wishart Ensemble random matrices

# Author: Alejandro Santorum Varela
# License: BSD 3-Clause

from skrmt.ensemble import WishartEnsemble

Wishart Ensemble contains random matrices formed by the multiplication of two random matrices whose entries are gaussian distributed.

Wishart Real Ensemble (WRE)

Random matrices of WRE are formed by multiplying a random real standard gaussian matrix of size \(p \times n\) by its transpose.

They are also known as 1-Laguerre random matrices (beta = 1).

A random matrix of Wishart Real Ensemble can be sampled using scikit-rmt with the following code.

wre = WishartEnsemble(beta=1, p=3, n=5)
print(wre.matrix)
[[ 2.52187748  0.90213238  0.9233787 ]
 [ 0.90213238  2.68877397 -0.34174262]
 [ 0.9233787  -0.34174262  0.81725582]]

Wishart Complex Ensemble (WCE)

Random matrices of WCE are formed by multiplying a random complex standard gaussian matrix of size \(p \times n\) by its transpose.

They are also known as 2-Laguerre random matrices (beta = 2).

A random matrix of Wishart Complex Ensemble can be sampled using scikit-rmt with the following code.

wce = WishartEnsemble(beta=2, p=3, n=5)
print(wce.matrix)
[[14.06746504+1.18556151e-16j  0.8944584 -2.38001326e-01j
  -0.83235695-5.19899908e+00j]
 [ 0.8944584 +2.38001326e-01j 10.75632892-1.21034686e-16j
  -0.19185687+1.03864421e-01j]
 [-0.83235695+5.19899908e+00j -0.19185687-1.03864421e-01j
   4.73265095+1.69405758e-18j]]

Wishart Quaternion Ensemble (WQE)

Random matrices of WQE are formed by sampling two random complex standard guassian matrices (\(\mathbf{X}\) and \(\mathbf{Y}\)), stacking them to create matrix \(\mathbf{A} = (\mathbf{X}\ \mathbf{Y}; -\mathbf{Y}^*\ \mathbf{X}^*)\). Finally matrix \(\mathbf{A}\) is multiplied by its transpose to generate a matrix WQE randon matrix.

They are also known as 4-Laguerre random matrices (beta = 4).

A random matrix of Wishart Quaternion Ensemble can be sampled using scikit-rmt with the following code.

wqe = WishartEnsemble(beta=4, p=2, n=5)
print(wqe.matrix)
[[ 1.59520988e+01+0.00000000e+00j  5.32889278e+00+5.03594358e+00j
   2.50068009e-16+0.00000000e+00j -1.36971229e+00-7.23141196e+00j]
 [ 5.32889278e+00-5.03594358e+00j  2.02861721e+01+0.00000000e+00j
   1.36971229e+00+7.23141196e+00j  1.79871143e-16-4.44089210e-16j]
 [ 2.50068009e-16+0.00000000e+00j  1.36971229e+00-7.23141196e+00j
   1.59520988e+01+0.00000000e+00j  5.32889278e+00-5.03594358e+00j]
 [-1.36971229e+00+7.23141196e+00j  1.79871143e-16+4.44089210e-16j
   5.32889278e+00+5.03594358e+00j  2.02861721e+01+0.00000000e+00j]]

Total running time of the script: (0 minutes 0.004 seconds)

Gallery generated by Sphinx-Gallery