bundles / scipy latest / scipy / stats / _multivariate / special_ortho_group_frozen / __init__
function
scipy.stats._multivariate:special_ortho_group_frozen.__init__
Signature
def __init__ ( self , dim = None , seed = None ) Summary
Create a frozen SO(N) distribution.
Parameters
dim: scalarDimension of matrices
seed: {None, int, `numpy.random.Generator`, `numpy.random.RandomState`}, optionalIf
seedis None (ornp.random), the numpy.random.RandomState singleton is used. Ifseedis an int, a newRandomStateinstance is used, seeded withseed. Ifseedis already aGeneratororRandomStateinstance then that instance is used.
Examples
from scipy.stats import special_ortho_group g = special_ortho_group(5) x = g.rvs()✓
Aliases
-
scipy.stats._multivariate.special_ortho_group_frozen.__init__