numrs2 0.3.1

A Rust implementation inspired by NumPy for numerical computing (NumRS2)
Documentation
//! Interoperability with other Rust numerical libraries
//!
//! This module provides conversion functions to and from other popular Rust
//! numerical libraries like ndarray and SciRS2.

// nalgebra_compat removed - nalgebra is forbidden per SCIRS2 POLICY
pub mod ndarray_compat;
pub mod scirs_compat;

#[cfg(test)]
mod tests {

    #[test]
    fn test_ndarray_conversions() {
        // Tests moved to the ndarray_compat module
    }

    #[test]
    fn test_nalgebra_conversions() {
        // Tests moved to the nalgebra_compat module
    }
}