From 3aa7d694957dd625a45c323f407ac5837ebb9562 Mon Sep 17 00:00:00 2001 From: Cody Michael Jones <46515483+cm-jones@users.noreply.github.com> Date: Sat, 6 Jul 2024 16:06:38 -0500 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 83591d4..a1e8258 100644 --- a/README.md +++ b/README.md @@ -6,11 +6,11 @@ ## Description -Cramer is an open-source, numerical linear algebra library for C++ that supports a wide variety of computations with vectors and matrices. For a full list of features, see [below](#features). +Cramer supports a large collection of computations with vectors and matrices. For a full list of features, see [Features](#features). -It's named after the Genevan mathematician [Gabriel Cramer](https://en.wikipedia.org/wiki/Gabriel_Cramer), who is probably most well-known for his discovery of Cramer's rule: a formula to solve a system of linear equations of the form $Ax = b$ using determinants (if and only if there is a unique solution, i.e., A is invertible). +It's named after the Genevan mathematician [Gabriel Cramer](https://en.wikipedia.org/wiki/Gabriel_Cramer), who is probably most well-known for Cramer's rule: a formula to solve a system of linear equations using determinants. -I realize that there are other (and much better) linear algebra libraries out there, but I wanted to create one that was easy to understand, maintain, and use. Think of it as a slimmed down version of [Eigen](https://gitlab.com/libeigen/eigen). +There are better linear algebra libraries out there, but I wanted to create one that was easier to use, understand, and maintain. Think of it as a smaller version of [Eigen](https://gitlab.com/libeigen/eigen). ## Features