DenseMatrixMultiply Method (Double) |
Returns the result of the multiplication of this matrix and a vector.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public double[] Multiply(
double[] vector
)
Public Function Multiply (
vector As Double()
) As Double()
public:
array<double>^ Multiply(
array<double>^ vector
)
member Multiply :
vector : float[] -> float[]
Parameters
- vector
- Type: SystemDouble
The vector to be multiplied.
Return Value
Type:
DoubleThe resultant vector.
See Also