bundles / scipy 1.17.1 / scipy / linalg / interpolative / estimate_spectral_norm
function
scipy.linalg.interpolative:estimate_spectral_norm
Signature
def estimate_spectral_norm ( A , its = 20 , rng = None ) Summary
Estimate spectral norm of a matrix by the randomized power method.
Parameters
A: :class:`scipy.sparse.linalg.LinearOperator`Matrix given as a scipy.sparse.linalg.LinearOperator with the
matvecandrmatvecmethods (to apply the matrix and its adjoint).its: int, optionalNumber of power method iterations.
rng: `numpy.random.Generator`, optionalPseudorandom number generator state. When
rngis None, a new numpy.random.Generator is created using entropy from the operating system. Types other than numpy.random.Generator are passed to numpy.random.default_rng to instantiate aGenerator. If rand isFalse, the argument is ignored.
Returns
: floatSpectral norm estimate.
Aliases
-
scipy.linalg.interpolative.estimate_spectral_norm