scirs2-core 0.4.2

Core utilities and common functionality for SciRS2 (scirs2-core)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Prelude for linear algebra operations.
//!
//! Import this module to get access to all commonly used BLAS and LAPACK functions.
//!
//! # Example
//!
//! ```rust,ignore
//! use scirs2_core::linalg::prelude::*;
//!
//! // Now you can use dot_ndarray, matmul, solve_ndarray, etc.
//! ```

// Re-export all BLAS operations
pub use super::blas::*;

// Re-export all LAPACK operations
pub use super::lapack::*;