scirs2-linalg 0.4.4

Linear algebra module for SciRS2 (scirs2-linalg)
Documentation
1
2
3
4
5
6
7
8
9
10
//! Sketch matrix types and random embedding transforms for large-scale linear algebra.
//!
//! This module provides randomised linear maps (sketches) used to compress tall or
//! wide matrices while approximately preserving geometric structure.

pub mod sketch_matrix;

pub use sketch_matrix::{
    jl_embed_points, CountSketchMatrix, GaussianSketch, JLTransform, SRHTTransform,
};