hisab 1.4.0

Higher mathematics library — linear algebra, geometry, calculus, and numerical methods for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Tensor algebra for numerical and theoretical physics computation.
//!
//! - [`Tensor`] — N-dimensional dense tensor (existing)
//! - [`IndexedTensor`] — tensor with covariant/contravariant index tracking
//! - [`SymmetricTensor`] — storage-efficient symmetric tensor
//! - [`AntisymmetricTensor`] — storage-efficient antisymmetric tensor
//! - [`SparseTensor`] — sparse tensor for high-rank objects

mod dense;
mod indexed;
mod sparse;
mod symmetric;

pub use dense::Tensor;
pub use indexed::*;
pub use sparse::*;
pub use symmetric::*;