Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change documentation of Svd.Determinant properties #1106

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Numerics/LinearAlgebra/Complex/Factorization/Svd.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public override Complex ConditionNumber
}

/// <summary>
/// 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.
/// </summary>
public override Complex Determinant
{
Expand Down
2 changes: 1 addition & 1 deletion src/Numerics/LinearAlgebra/Complex32/Factorization/Svd.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public override Complex32 ConditionNumber
}

/// <summary>
/// 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.
/// </summary>
public override Complex32 Determinant
{
Expand Down
2 changes: 1 addition & 1 deletion src/Numerics/LinearAlgebra/Double/Factorization/Svd.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public override double ConditionNumber
}

/// <summary>
/// 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.
/// </summary>
public override double Determinant
{
Expand Down
2 changes: 1 addition & 1 deletion src/Numerics/LinearAlgebra/Factorization/Svd.cs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ Matrix<T> ComputeW()
public abstract T ConditionNumber { get; }

/// <summary>
/// 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.
/// </summary>
public abstract T Determinant { get; }

Expand Down
2 changes: 1 addition & 1 deletion src/Numerics/LinearAlgebra/Single/Factorization/Svd.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public override float ConditionNumber
}

/// <summary>
/// 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.
/// </summary>
public override float Determinant
{
Expand Down