diff --git a/src/Numerics/LinearAlgebra/Complex/Vector.cs b/src/Numerics/LinearAlgebra/Complex/Vector.cs
index 9ff72497..a9bfba42 100644
--- a/src/Numerics/LinearAlgebra/Complex/Vector.cs
+++ b/src/Numerics/LinearAlgebra/Complex/Vector.cs
@@ -450,9 +450,9 @@ namespace MathNet.Numerics.LinearAlgebra.Complex
}
///
- /// Returns the index of the absolute maximum element.
+ /// Returns the index of the maximum element.
///
- /// The index of absolute maximum element.
+ /// The index of maximum element.
public override int MaximumIndex()
{
throw new NotSupportedException();
diff --git a/src/Numerics/LinearAlgebra/Complex32/Vector.cs b/src/Numerics/LinearAlgebra/Complex32/Vector.cs
index a0c73acc..971177d0 100644
--- a/src/Numerics/LinearAlgebra/Complex32/Vector.cs
+++ b/src/Numerics/LinearAlgebra/Complex32/Vector.cs
@@ -445,9 +445,9 @@ namespace MathNet.Numerics.LinearAlgebra.Complex32
}
///
- /// Returns the index of the absolute maximum element.
+ /// Returns the index of the maximum element.
///
- /// The index of absolute maximum element.
+ /// The index of maximum element.
public override int MaximumIndex()
{
throw new NotSupportedException();
diff --git a/src/Numerics/LinearAlgebra/Double/DenseVector.cs b/src/Numerics/LinearAlgebra/Double/DenseVector.cs
index 8160aaf5..f466dbd0 100644
--- a/src/Numerics/LinearAlgebra/Double/DenseVector.cs
+++ b/src/Numerics/LinearAlgebra/Double/DenseVector.cs
@@ -577,9 +577,9 @@ namespace MathNet.Numerics.LinearAlgebra.Double
}
///
- /// Returns the index of the absolute maximum element.
+ /// Returns the index of the maximum element.
///
- /// The index of absolute maximum element.
+ /// The index of maximum element.
public override int MaximumIndex()
{
var index = 0;
diff --git a/src/Numerics/LinearAlgebra/Double/Vector.cs b/src/Numerics/LinearAlgebra/Double/Vector.cs
index 41cdeb09..b8709714 100644
--- a/src/Numerics/LinearAlgebra/Double/Vector.cs
+++ b/src/Numerics/LinearAlgebra/Double/Vector.cs
@@ -443,9 +443,9 @@ namespace MathNet.Numerics.LinearAlgebra.Double
}
///
- /// Returns the index of the absolute maximum element.
+ /// Returns the index of the maximum element.
///
- /// The index of absolute maximum element.
+ /// The index of maximum element.
public override int MaximumIndex()
{
var index = 0;
diff --git a/src/Numerics/LinearAlgebra/Single/DenseVector.cs b/src/Numerics/LinearAlgebra/Single/DenseVector.cs
index cd50e0a0..efd2f434 100644
--- a/src/Numerics/LinearAlgebra/Single/DenseVector.cs
+++ b/src/Numerics/LinearAlgebra/Single/DenseVector.cs
@@ -567,9 +567,9 @@ namespace MathNet.Numerics.LinearAlgebra.Single
}
///
- /// Returns the index of the absolute maximum element.
+ /// Returns the index of the maximum element.
///
- /// The index of absolute maximum element.
+ /// The index of maximum element.
public override int MaximumIndex()
{
var index = 0;
diff --git a/src/Numerics/LinearAlgebra/Single/Vector.cs b/src/Numerics/LinearAlgebra/Single/Vector.cs
index ccf601f6..a8903183 100644
--- a/src/Numerics/LinearAlgebra/Single/Vector.cs
+++ b/src/Numerics/LinearAlgebra/Single/Vector.cs
@@ -443,9 +443,9 @@ namespace MathNet.Numerics.LinearAlgebra.Single
}
///
- /// Returns the index of the absolute maximum element.
+ /// Returns the index of the maximum element.
///
- /// The index of absolute maximum element.
+ /// The index of maximum element.
public override int MaximumIndex()
{
var index = 0;
diff --git a/src/Numerics/LinearAlgebra/Vector.Arithmetic.cs b/src/Numerics/LinearAlgebra/Vector.Arithmetic.cs
index 08b11f52..20ed30f3 100644
--- a/src/Numerics/LinearAlgebra/Vector.Arithmetic.cs
+++ b/src/Numerics/LinearAlgebra/Vector.Arithmetic.cs
@@ -1050,9 +1050,9 @@ namespace MathNet.Numerics.LinearAlgebra
}
///
- /// Returns the index of the absolute maximum element.
+ /// Returns the index of the maximum element.
///
- /// The index of absolute maximum element.
+ /// The index of maximum element.
public abstract int MaximumIndex();
///