rlapack 0.0.3

LAPACK bindings and wrappers
docs.rs failed to build rlapack-0.0.3
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: rlapack-0.0.5

RLAPACK

Rust bindings and wrappers for LAPACK (Linear Algebra PACKage).

Overview

RLAPACK wraps each external call in a trait with the same name (but capitalized). This trait contains a single static method, of the same name. These traits are generic over the four main types of numbers LAPACK supports: f32, f64, Complex32, and Complex64.

For example the functions sgesv_, dgesv_, cgesv_, and zgesv_ are called with the function Gesv::gesv.

Additionally, RLAPACK introduces a Matrix trait to shorten calls to these LAPACK functions, implemented for types that implement matrix-like characteristics.

Documentation

Installation

Add this to your Cargo.toml:

[dependencies]
rlapack = "0.0.3"

and this to your crate root:

extern crate rlapack;