pub fn random_unitary_using<A, R>(
n: usize,
rng: &mut R,
) -> ArrayBase<OwnedRepr<A>, Dim<[usize; 2]>>Expand description
Generate random unitary matrix using QR decomposition with given RNG
- Be sure that this it NOT a uniform distribution. Use it only for test purpose.
- See random_unitary for using default RNG.