public static ComplexMatrix operator /(
Complex left,
ReadOnlyDoubleMatrix right
)
Public Shared Operator / (
left As Complex,
right As ReadOnlyDoubleMatrix
) As ComplexMatrix
public:
static ComplexMatrix^ operator /(
Complex left,
ReadOnlyDoubleMatrix^ right
)
static let inline (/)
left : Complex *
right : ReadOnlyDoubleMatrix : ComplexMatrix
Let and
be the right
number of rows and columns, respectively, and let its generic entry given by
The method returns a matrix having
the same dimensions of right, whose generic
entry is:
ArgumentNullException | right is null. |