public double ScalarProduct(
DoubleMatrix left,
DoubleMatrix right
)
Public Function ScalarProduct (
left As DoubleMatrix,
right As DoubleMatrix
) As Double
public:
double ScalarProduct(
DoubleMatrix^ left,
DoubleMatrix^ right
)
member ScalarProduct :
left : DoubleMatrix *
right : DoubleMatrix -> float
Coordinates must be passed as row vectors.
Let be the
matrix representation
of this instance, and let
and
be
left and right,
respectively. Then
method ScalarProduct(DoubleMatrix, DoubleMatrix)
returns
where are
coordinates w.r.t. basis
, and
ArgumentNullException | left is null. -or- right is null. |
ArgumentOutOfRangeException | left is not a row vector. -or- left has Count not equal to the Dimension of the Basis. -or- right is not a row vector. -or- right has Count not equal to the Dimension of the Basis. |