Skip to content

Commit 15bf4ce

Browse files
Update IO.Astrodynamics.Net/IO.Astrodynamics/Math/NewtonRaphson.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 056a82e commit 15bf4ce

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

IO.Astrodynamics.Net/IO.Astrodynamics/Math/NewtonRaphson.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,11 @@ public static double BoundedNewtonRaphson(Func<double, double> f, Func<double, d
113113
}
114114

115115
/// <summary>
116-
///
116+
/// Solves the linear system of equations A * x = b for x, where A is a matrix and b is a vector.
117117
/// </summary>
118-
/// <param name="a"></param>
119-
/// <param name="b"></param>
120-
/// <returns></returns>
118+
/// <param name="a">The coefficient matrix A of size (n x n).</param>
119+
/// <param name="b">The right-hand side vector b of length n.</param>
120+
/// <returns>An array containing the solution vector x.</returns>
121121
private static double[] SolveLinearSystem(double[,] a, double[] b)
122122
{
123123
var matrix = MathNet.Numerics.LinearAlgebra.Matrix<double>.Build.DenseOfArray(a);

0 commit comments

Comments
 (0)