I'm looking at the documentation for DenseMatrix in MathNet Numerics which can be found here. I found two method definitions Matrix<T> Divide(double scalar)
and Matrix<T> DivideByThis(double scalar)
which both seem to return a Matrix and accept a double scalar.
Is there any difference between the two?