From 01eaaf4f5d05e7665595a8d3dc919632ba2940fa Mon Sep 17 00:00:00 2001 From: Anastasios Zouzias Date: Tue, 2 Nov 2021 21:39:33 +0100 Subject: [PATCH] Update README.md --- README.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 622feeb..bb1751d 100644 --- a/README.md +++ b/README.md @@ -21,15 +21,15 @@ The above code runs a simple instance of least-squares for a gaussian random mat ## Usage ```c++ - using namespace Eigen; unsigned int m= 100, n = 10; - Matrix A(m, n); RowVector xopt(n); + xopt.setRandom(); A.setRandom(); + RowVector b = A * xopt; auto solver = rek::Solver(); @@ -47,9 +47,6 @@ RowVector residual = x - xopt; std::cout << "Least Squares error: " << residual.norm() << std::endl; ``` -## Bugs -Please report bugs by opening a new [issue](https://github.com/zouzias/REK-CPP/issues/new). - ### Implementation Details REK-CPP is an implementation of REK with two additional technical features. First, REK-CPP utilizes level-1 BLAS routines for all operations of REK and second REK-CPP additionally stores explicitly the transpose of A for more efficient