The implementation method to be used.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public GenMinRes..::.ImplementationMethod Method { get; set; }
Visual Basic (Declaration)
Public Property Method As GenMinRes..::.ImplementationMethod
Visual C++
public:
property GenMinRes..::.ImplementationMethod Method {
	GenMinRes..::.ImplementationMethod get ();
	void set (GenMinRes..::.ImplementationMethod value);
}

Field Value

An ImplementationMethod value specifying the implementation method to be used.

Remarks

ImplementationMethod Method Used
FirstGramSchmidt Use the first Gram-Schmidt implementation. This is the default value used.
SecondGramSchmidt Use the second Gram-Schmidt implementation.
FirstHouseholder Use the first Householder implementation.
SecondHouseholder Use the second Householder implementation.

By default, Method = GenMinRes.ImplementationMethod.FirstGramSchmidt.

See Also