Is there a method that I can call to create a random orthonormal matrix in python? Possibly using numpy? Or is there a way to create a orthonormal matrix using multiple nump
from scipy.stats import special_ortho_group num_dim=3 x = special_ortho_group.rvs(num_dim)
Documentation