| PowerMethod(Double, Int32) Constructor |
Constructs a PowerMethod instance with the specified tolerance
and maximum number of iterations.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public PowerMethod(
double tolerance,
int maxIterations
)
Public Sub New (
tolerance As Double,
maxIterations As Integer
)
public:
PowerMethod(
double tolerance,
int maxIterations
)
new :
tolerance : float *
maxIterations : int -> PowerMethod
Parameters
- tolerance Double
- The power method
converges if changes in the normalized eigenvector, with respect to
the infinity norm, is less than this specified tolerance.
- maxIterations Int32
- The maximum number of iterations to
perform.
See Also