Click or drag to resize

SquareMatrixMultiply Operator (Double, SquareMatrix)

Multiply a real, square matrix by a real constant.

Namespace:  Meta.Numerics.Matrices
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public static SquareMatrix operator *(
	double alpha,
	SquareMatrix A
)

Parameters

alpha
Type: SystemDouble
The constant.
A
Type: Meta.Numerics.MatricesSquareMatrix
The matrix.

Return Value

Type: SquareMatrix
The product αA.
Exceptions
ExceptionCondition
ArgumentNullExceptionA is .
See Also