Represents a convergence test based on the size of a vector.
SystemObject Extreme.Mathematics.AlgorithmsConvergenceTestT Extreme.Mathematics.AlgorithmsSimpleConvergenceTestT Extreme.Mathematics.AlgorithmsVectorConvergenceTestT Extreme.Mathematics.AlgorithmsVectorConvergenceTest
Namespace:
Extreme.Mathematics.Algorithms
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public class VectorConvergenceTest<T> : SimpleConvergenceTest<T>
Public Class VectorConvergenceTest(Of T)
Inherits SimpleConvergenceTest(Of T)
generic<typename T>
public ref class VectorConvergenceTest : public SimpleConvergenceTest<T>
type VectorConvergenceTest<'T> =
class
inherit SimpleConvergenceTest<'T>
end
Type Parameters
- T
The VectorConvergenceTestT type exposes the following members.
Top
Top
Top
Use the VectorConvergenceTestT class to represent a convergence test based
on the size of a vector.
The Norm property specifies which norm is to be used
when calculating the size of the vector. It is of type VectorConvergenceNorm.
The ErrorMeasure property specifies how the error is to be calculated.
It is of type VectorConvergenceErrorMeasure.
A value of VectorConvergenceErrorMeasure.Norm indicates that the norm of the vector
is used as the measure. A value of VectorConvergenceErrorMeasure.Element-wise
indicates that the error of each component is calculated separately,
and the norm of the vector of all error components is used.
Reference