From 027ddfab120b1e2d0c4d6b676c31e62615ce2374 Mon Sep 17 00:00:00 2001 From: Ilia Gyrdymov Date: Wed, 27 Dec 2023 22:34:17 +0200 Subject: [PATCH] README: Add link to 'solve' method api docs (#173) --- CHANGELOG.md | 4 ++++ README.md | 2 +- pubspec.yaml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dbdc28d..fda8eb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 13.12.2 +- `README`: + - Add link to `solve` method api docs + ## 13.12.1 - `Vector`: - Extracting values from cache for `exp` and `prod` methods fixed diff --git a/README.md b/README.md index 42e38a5..2d04fd5 100644 --- a/README.md +++ b/README.md @@ -987,7 +987,7 @@ A matrix notation for [a system of linear equations](https://en.wikipedia.org/wi AX=B ``` -To solve the system and find `X`, one may use the `solve` method: +To solve the system and find `X`, one may use the [`solve`](https://pub.dev/documentation/ml_linalg/latest/matrix/Matrix/solve.html) method: ````Dart import 'package:ml_linalg/linalg.dart'; diff --git a/pubspec.yaml b/pubspec.yaml index d7881e6..5f1e0c9 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: ml_linalg description: SIMD-based linear algebra and statistics, efficient manipulation with numeric data -version: 13.12.1 +version: 13.12.2 homepage: https://github.com/gyrdym/ml_linalg environment: