IMSL C# Numerical Library

GenMinRes.IVectorProducts.Innerproduct Method 

Used to compute the inner product of two vectors for the Gram-Schmidt implementation.

double Innerproduct(
   double[] x,
   double[] y
);

Parameters

x
The first input double vector which is to take part in the inner product.
y
The second input double vector which is to take part in the inner product.

Return Value

A double, the value of the inner product of x and y.

Remarks

If this function is not implemented, the dot product is used for the inner product.

See Also

GenMinRes.IVectorProducts Interface | Imsl.Math Namespace