From d728c35d7292722096b7db719d4f3a5771cf8aaa Mon Sep 17 00:00:00 2001 From: Iaroslav Postovalov Date: Sun, 31 Jan 2021 14:50:48 +0700 Subject: [PATCH] Minor: regenerate README files --- README.md | 11 +++++++++++ kmath-ast/README.md | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6ab51098d..d47016a2a 100644 --- a/README.md +++ b/README.md @@ -104,6 +104,17 @@ KMath is a modular library. Different modules provide different features with di > **Maturity**: EXPERIMENTAL
+* ### [kmath-complex](kmath-complex) +> Complex numbers and quaternions. +> +> **Maturity**: PROTOTYPE +> +> **Features:** +> - [complex](kmath-complex/src/commonMain/kotlin/kscience/kmath/complex/Complex.kt) : Complex Numbers +> - [quaternion](kmath-complex/src/commonMain/kotlin/kscience/kmath/complex/Quaternion.kt) : Quaternions + +
+ * ### [kmath-core](kmath-core) > Core classes, algebra definitions, basic linear algebra > diff --git a/kmath-ast/README.md b/kmath-ast/README.md index 33b118973..8499f7171 100644 --- a/kmath-ast/README.md +++ b/kmath-ast/README.md @@ -61,7 +61,7 @@ For example, the following builder: RealField.mstInField { symbol("x") + 2 }.compile() ``` -… leads to generation of bytecode, which can be decompiled to the following Java class: +… leads to generation of bytecode, which can be decompiled to the following Java class: ```java package kscience.kmath.asm.generated;