RectangularMatrixDivision Operator |
Divides a real, rectangular matrix by a real constant.
Namespace:
Meta.Numerics.Matrices
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static RectangularMatrix operator /(
RectangularMatrix A,
double alpha
)
Public Shared Operator / (
A As RectangularMatrix,
alpha As Double
) As RectangularMatrix
public:
static RectangularMatrix^ operator /(
RectangularMatrix^ A,
double alpha
)
static let inline (/)
A : RectangularMatrix *
alpha : float : RectangularMatrix
Parameters
- A
- Type: Meta.Numerics.MatricesRectangularMatrix
The matrix. - alpha
- Type: SystemDouble
The constant.
Return Value
Type:
RectangularMatrixThe quotient A/α.
Exceptions See Also