Sets the user-supplied functions for the inner product and, optionally, the norm to be used in the Gram-Schmidt implementations.

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

Syntax

C#
public void SetVectorProducts(
	GenMinRes..::.IVectorProducts argP
)
Visual Basic (Declaration)
Public Sub SetVectorProducts ( _
	argP As GenMinRes..::.IVectorProducts _
)
Visual C++
public:
void SetVectorProducts(
	GenMinRes..::.IVectorProducts^ argP
)

Parameters

argP
Type: Imsl.Math..::.GenMinRes..::.IVectorProducts
An IVectorProducts specifying the user-defined function for the inner product and, optionally, the norm in the Gram-Schmidt implementations. If this member function is not called, the dot product will be used for the inner product and the  L_2 norm will be used for the norm.

See Also