Divides a matrix in-place by a scalar.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Matrix<T> DivideInPlace(
T factor
)
Public Function DivideInPlace (
factor As T
) As Matrix(Of T)
public:
Matrix<T>^ DivideInPlace(
T factor
)
member DivideInPlace :
factor : 'T -> Matrix<'T>
Parameters
- factor
- Type: T
A number.
Return Value
Type:
MatrixTA matrix whose elements are
the corresponding elements of the matrix
divided by
factor.
Reference