rs-math 0.1.0

This is a math library, a math library written in Rust. Write in a native way as much as possible in this math library, reducing the use of third-party libraries. There may be some errors in this math library, and we hope that users can provide suggestions for modification. I will continue to track related issues when submitting Issues, and if possible, please also participate in my project.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub  mod graphical;
pub mod matrix;
pub mod vector;

#[cfg(test)]
mod tests {
    use log::LevelFilter;

    #[cfg(test)]
    #[ctor::ctor]
    fn init() {
        // 初始化日志记录器(logger)用于测试
        // env_logger::init();
        env_logger::Builder::from_default_env()
            .filter_level(LevelFilter::Info)
            .init();
    }
}