rmatrix_ks 0.4.0

matrix and some algebra in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # State
//!
//! use state to distinguish the shape of the matrix,
//! mainly used to distinguish the direction of the vector

/// state for matrices
#[derive(Debug, Clone)]
pub struct SMatrix;

/// state for row vectors
#[derive(Debug, Clone)]
pub struct SRow;

/// state for column vectors
#[derive(Debug, Clone)]
pub struct SColumn;