We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f736b3 commit 122c70cCopy full SHA for 122c70c
README.md
@@ -1,14 +1,16 @@
1
# LinearAlgebraX
2
3
-
4
5
6
This module implements basic linear algebra methods for matrices
7
with exact entries (e.g., `Rational{Int}` values). The function names
8
typically match the standard ones in Julia but with an `x` (for "exact")
9
appended.
10
+The functions in this module work for all types of `Integer`, `Rational`, and `Mod`
+entries in matrices. Other exact numbers may work as well, but are not tested.
11
+As the goal of this module is always to give exact answers but, at the same time,
12
+be type stable, the results of many of these functions are `big`. That is, the `detx`
13
+of an integer matrix has entries of type `BigInt`.
14
15
## Functions
16
0 commit comments