-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(docs): update documentation landing page and manual
- Loading branch information
Showing
3 changed files
with
52 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
# TypedMatrices.jl Documentation | ||
# TypedMatrices.jl | ||
|
||
Welcome to the documentation for TypedMatrices.jl. | ||
Welcome to the documentation of `TypedMatrices.jl`, an extensible matrix collection for Julia. The matrices in the library can be used to test algorithms or check (and potentially disprove) linear algebra conjectures numerically. | ||
|
||
An extensible Julia matrix collection utilizing type system to enhance performance. | ||
The package relies on the Julia type system to enhance performance by improving the matrix generation time and reducing storage requirements. | ||
|
||
Check [Getting Started](@ref) for a quick start. | ||
To get started, check out the [Getting Started](@ref) section. | ||
|
||
## Features | ||
|
||
- Matrix Types: Types representing special matrices that can be used for algorithm testing or other computations. | ||
- Linear Algebra Operations: Operations are fine-tuned to enhance the performance of these matrix types. | ||
- Matrix Properties (Tags): Users can add properties (tags) to matrices, which can be used for organization or computation. | ||
- Matrix Grouping: Matrices can be grouped together depending on types or properties, with the flexibility for users to define their own types. | ||
- Filtering by Properties/Groups: Matrices can be filtered by property or group for more targeted computations. | ||
- Each special matrix has its own Julia type, and users can define new types compatible with the package using the interface provided. | ||
- Many linear algebra operations are implemented using explicit formulas, when known, to enhance performance. | ||
- The matrices in the collection can be filtered by property, to find examples that satisfy a set of properties of interest. | ||
- Users can create matrix groups to retrieve and organize the types in the collection. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters