Returns the inner product (matrix-vector product) of a vector and an
symmetric matrix.
Namespace:
CenterSpace.NMath.MatrixAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public static DoubleVector Product( DoubleVector v, DoubleSymmetricMatrix A ) |
| Visual Basic (Declaration) |
|---|
Public Shared Function Product ( _ v As DoubleVector, _ A As DoubleSymmetricMatrix _ ) As DoubleVector |
| Visual C++ |
|---|
public: static DoubleVector^ Product( DoubleVector^ v, DoubleSymmetricMatrix^ A ) |
Parameters
- v
- Type: CenterSpace.NMath.Core..::.DoubleVector
A vector.
- A
- Type: CenterSpace.NMath.Matrix..::.DoubleSymmetricMatrix
An symmetric matrix.
Return Value
The inner product (matrix-vector product) of v and A.
Remarks
This is equal to the inner product of A and v.