1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
"""SciRS2 — Scientific computing in Rust with Python bindings.
This package provides Python bindings for the SciRS2 scientific computing
library, a high-performance SciPy alternative implemented in pure Rust.
Modules
-------
linalg : Linear algebra (matmul, det, inv, eig, svd, solve, norm, qr, lu, cholesky)
stats : Statistical distributions and hypothesis tests
fft : Fast Fourier Transforms (DFT, DCT, DST, STFT)
optimize : Optimization algorithms (BFGS, L-BFGS-B, differential evolution)
special : Special mathematical functions (gamma, beta, bessel, etc.)
integrate : Numerical integration (quad, dblquad, odeint)
interpolate : Interpolation (1D, 2D, RBF, splines)
signal : Signal processing (filters, wavelets, spectral analysis)
spatial : Spatial algorithms (KD-tree, Delaunay, ConvexHull)
sparse : Sparse matrix operations
ndimage : N-dimensional image processing
cluster : Clustering algorithms (K-Means, DBSCAN, hierarchical)
graph : Graph algorithms
metrics : ML evaluation metrics
io : File I/O (HDF5, Parquet, Zarr, NetCDF)
datasets : Dataset loading and synthetic generators
transform : Data transformations and preprocessing
text : Text processing and NLP
vision : Computer vision algorithms
series : Time series analysis (ARIMA, GARCH, state-space)
neural : Neural network layers
autograd : Automatic differentiation
"""
# noqa: F401,F403 — re-export all C-extension symbols
# noqa: F401
# Convenience sub-namespace imports — mirrors the flat API exposed by the
# compiled extension, grouped for discoverability.
# noqa: F401
# noqa: F401
# noqa: F401
# noqa: F401
# noqa: F401
# noqa: F401
# noqa: F401
# noqa: F401
# noqa: F401
# noqa: F401
=