Skip to content

Commit

Permalink
Add links to lambert_w
Browse files Browse the repository at this point in the history
  • Loading branch information
cpmech committed Dec 17, 2024
1 parent 72356b9 commit b36edd1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
7 changes: 7 additions & 0 deletions russell_lab/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ _This crate is part of [Russell - Rust Scientific Library](https://github.com/cp

- [Introduction](#introduction)
- [Documentation](#documentation)
- [External crates](#external-crates)
- [Installation](#installation)
- [Setting Cargo.toml up](#setting-cargotoml-up)
- [Optional features](#optional-features)
Expand Down Expand Up @@ -74,6 +75,12 @@ There are many functions for linear algebra, such as (for Real and Complex types

* [![documentation](https://docs.rs/russell_lab/badge.svg)](https://docs.rs/russell_lab/)[russell_lab documentation](https://docs.rs/russell_lab/)

### External crates

A few other third-party crates related to numerical mathematics and associated disciplines are listed below:

* [lambert_w](https://github.com/JSorngard/lambert_w) — Computes the [Lambert W function](https://mathworld.wolfram.com/LambertW-Function.html)



## Installation
Expand Down
4 changes: 4 additions & 0 deletions russell_lab/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
//! * [matvec] -- Functions operating on matrices and vectors
//! * [vector] -- Vector struct and associated functions
//!
//! Other functionality may be found in external crates, for instance:
//!
//! * [lambert_w](https://github.com/JSorngard/lambert_w) -- Computes the [Lambert W function](https://mathworld.wolfram.com/LambertW-Function.html)
//!
//! ## Linear algebra
//!
//! For linear algebra, the main structures are [NumVector] and [NumMatrix], that are generic Vector and Matrix structures. The Matrix data is stored as **column-major**. The [Vector] and [Matrix] are `f64` and `Complex64` aliases of `NumVector` and `NumMatrix`, respectively.
Expand Down

0 comments on commit b36edd1

Please sign in to comment.