Matrix.Divide<T> Method
Divides a matrix by a scalar.
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
A matrix whose elements are the corresponding elements of matrix divided by factor.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public static Matrix<T> Divide<T>(
Matrix<T> matrix,
T factor
)
Parameters
- matrix Matrix<T>
- A matrix.
- factor T
- A number.
Type Parameters
- T
Return Value
Matrix<T>A matrix whose elements are the corresponding elements of matrix divided by factor.
Exceptions
Argument | matrix is null |