From 416c9752cae49498223f930097ca021a6e692831 Mon Sep 17 00:00:00 2001 From: Asa Packer Date: Thu, 2 Jan 2025 18:27:36 -0800 Subject: [PATCH] Change documentation of Svd.Determinant properties to indicate it returns the absolute value of the determinant --- src/Numerics/LinearAlgebra/Complex/Factorization/Svd.cs | 2 +- src/Numerics/LinearAlgebra/Complex32/Factorization/Svd.cs | 2 +- src/Numerics/LinearAlgebra/Double/Factorization/Svd.cs | 2 +- src/Numerics/LinearAlgebra/Factorization/Svd.cs | 2 +- src/Numerics/LinearAlgebra/Single/Factorization/Svd.cs | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Numerics/LinearAlgebra/Complex/Factorization/Svd.cs b/src/Numerics/LinearAlgebra/Complex/Factorization/Svd.cs index 455a7c9bf..da9bee5bd 100644 --- a/src/Numerics/LinearAlgebra/Complex/Factorization/Svd.cs +++ b/src/Numerics/LinearAlgebra/Complex/Factorization/Svd.cs @@ -89,7 +89,7 @@ public override Complex ConditionNumber } /// - /// Gets the determinant of the square matrix for which the SVD was computed. + /// Gets the absolute value of the determinant of the square matrix for which the SVD was computed. /// public override Complex Determinant { diff --git a/src/Numerics/LinearAlgebra/Complex32/Factorization/Svd.cs b/src/Numerics/LinearAlgebra/Complex32/Factorization/Svd.cs index ad5cfc1c2..74a86cce8 100644 --- a/src/Numerics/LinearAlgebra/Complex32/Factorization/Svd.cs +++ b/src/Numerics/LinearAlgebra/Complex32/Factorization/Svd.cs @@ -89,7 +89,7 @@ public override Complex32 ConditionNumber } /// - /// Gets the determinant of the square matrix for which the SVD was computed. + /// Gets the absolute value of the determinant of the square matrix for which the SVD was computed. /// public override Complex32 Determinant { diff --git a/src/Numerics/LinearAlgebra/Double/Factorization/Svd.cs b/src/Numerics/LinearAlgebra/Double/Factorization/Svd.cs index b2ea49415..f0496033d 100644 --- a/src/Numerics/LinearAlgebra/Double/Factorization/Svd.cs +++ b/src/Numerics/LinearAlgebra/Double/Factorization/Svd.cs @@ -87,7 +87,7 @@ public override double ConditionNumber } /// - /// Gets the determinant of the square matrix for which the SVD was computed. + /// Gets the absolute value of the determinant of the square matrix for which the SVD was computed. /// public override double Determinant { diff --git a/src/Numerics/LinearAlgebra/Factorization/Svd.cs b/src/Numerics/LinearAlgebra/Factorization/Svd.cs index bff635404..780c564c8 100644 --- a/src/Numerics/LinearAlgebra/Factorization/Svd.cs +++ b/src/Numerics/LinearAlgebra/Factorization/Svd.cs @@ -124,7 +124,7 @@ Matrix ComputeW() public abstract T ConditionNumber { get; } /// - /// Gets the determinant of the square matrix for which the SVD was computed. + /// Gets the absolute value of the determinant of the square matrix for which the SVD was computed. /// public abstract T Determinant { get; } diff --git a/src/Numerics/LinearAlgebra/Single/Factorization/Svd.cs b/src/Numerics/LinearAlgebra/Single/Factorization/Svd.cs index f11017d0a..920629f47 100644 --- a/src/Numerics/LinearAlgebra/Single/Factorization/Svd.cs +++ b/src/Numerics/LinearAlgebra/Single/Factorization/Svd.cs @@ -87,7 +87,7 @@ public override float ConditionNumber } /// - /// Gets the determinant of the square matrix for which the SVD was computed. + /// Gets the absolute value of the determinant of the square matrix for which the SVD was computed. /// public override float Determinant {