Browse Source

Fix docs for DoPointwiseMultiply (#486)

v3
Jakub Arnold 10 years ago
committed by Christoph Ruegg
parent
commit
fa54083558
  1. 6
      src/Numerics/LinearAlgebra/Single/DenseVector.cs

6
src/Numerics/LinearAlgebra/Single/DenseVector.cs

@ -675,10 +675,10 @@ namespace MathNet.Numerics.LinearAlgebra.Single
}
/// <summary>
/// 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.
/// </summary>
/// <param name="other">The vector to pointwise divide this one by.</param>
/// <param name="result">The vector to store the result of the pointwise division.</param>
/// <param name="other">The vector to pointwise multiply this one by.</param>
/// <param name="result">The vector to store the result of the pointwise multiplication.</param>
protected override void DoPointwiseMultiply(Vector<float> other, Vector<float> result)
{
var denseOther = other as DenseVector;

Loading…
Cancel
Save