From fa540835586b055256edbc666427108cc04f80ba Mon Sep 17 00:00:00 2001 From: Jakub Arnold Date: Sat, 15 Apr 2017 20:36:55 +0200 Subject: [PATCH] Fix docs for DoPointwiseMultiply (#486) --- src/Numerics/LinearAlgebra/Single/DenseVector.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Numerics/LinearAlgebra/Single/DenseVector.cs b/src/Numerics/LinearAlgebra/Single/DenseVector.cs index 4beb651b..a796c6fa 100644 --- a/src/Numerics/LinearAlgebra/Single/DenseVector.cs +++ b/src/Numerics/LinearAlgebra/Single/DenseVector.cs @@ -675,10 +675,10 @@ namespace MathNet.Numerics.LinearAlgebra.Single } /// - /// Pointwise divide this vector with another vector and stores the result into the result vector. + /// Pointwise multiply this vector with another vector and stores the result into the result vector. /// - /// The vector to pointwise divide this one by. - /// The vector to store the result of the pointwise division. + /// The vector to pointwise multiply this one by. + /// The vector to store the result of the pointwise multiplication. protected override void DoPointwiseMultiply(Vector other, Vector result) { var denseOther = other as DenseVector;