Matrix<T>.Division Operator
            Divides a matrix by a scalar.
            
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
    C#
    
 
 
A matrix whose elements are the corresponding elements of matrix divided by factor.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
public static Matrix<T> operator /(
	Matrix<T> matrix,
	T factor
)Parameters
Return Value
Matrix<T>A matrix whose elements are the corresponding elements of matrix divided by factor.
Exceptions
| Argument | matrix is null. |