MatrixTMultiply(T, MatrixT) Operator
Returns computed product of values.
Namespace: Gemstone.NumericAssembly: Gemstone.Numeric (in Gemstone.Numeric.dll) Version: 1.0.181 -- Release Build+86654cb6df1a630c3ff1ddc480389319378cbbbb
public static Matrix<T> operator *(
T value1,
Matrix<T> value2
)
Public Shared Operator * (
value1 As T,
value2 As Matrix(Of T)
) As Matrix(Of T)
public:
static Matrix<T> operator *(
T value1,
Matrix<T> value2
)
JavaScript does not support overloaded operators.
- value1 T
- Left hand operand.
- value2 MatrixT
- Right hand operand.
MatrixTMatrixT representing the result of the multiplication operation.