From 1539fe237e64e61e33bb5091c706cb4e9bf2ab10 Mon Sep 17 00:00:00 2001 From: khanhkhanhlele Date: Wed, 5 Nov 2025 18:43:19 +0700 Subject: [PATCH] Fix typos in Algorithms/Numeric/Pseudoinverse/PseudoInverse.cs --- Algorithms/Numeric/Pseudoinverse/PseudoInverse.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Algorithms/Numeric/Pseudoinverse/PseudoInverse.cs b/Algorithms/Numeric/Pseudoinverse/PseudoInverse.cs index f85f63c0..3fede602 100644 --- a/Algorithms/Numeric/Pseudoinverse/PseudoInverse.cs +++ b/Algorithms/Numeric/Pseudoinverse/PseudoInverse.cs @@ -6,7 +6,7 @@ namespace Algorithms.Numeric.Pseudoinverse; /// The Moore–Penrose pseudo-inverse A+ of a matrix A, /// is a general way to find the solution to the following system of linear equations: /// ~b = A ~y. ~b e R^m; ~y e R^n; A e Rm×n. -/// There are varios methods for construction the pseudo-inverse. +/// There are various methods for construction the pseudo-inverse. /// This one is based on Singular Value Decomposition (SVD). /// public static class PseudoInverse