Chapter 1: What is NumeriLib?
1.1 Overview:
Welcome to the official book of the NumeriLib Mathematics Library. This library is designed to provide a comprehensive set of mathematical functions for Rust programmers. Whether you are working on scientific computing, data analysis, or any other math-intensive project, this library aims to be your one-stop shop.
1.2 Work in Progress:
As a testament to my commitment to continuous improvement, NumeriLib is an ongoing project. I am constantly expanding and enhancing its capabilities, striving to provide a robust and comprehensive set of mathematical tools. Your feedback and contributions are invaluable in shaping the future of the library.
1.3 Getting Started:
1.3.1 Installation:
To install NumeriLib, simply add the following line to your Cargo.toml
file:
...
[dependencies]
numerilib = "0.1.0"
...
Or, you can add it via the command line:
cargo add numerilib
Finally, if you want to use the latest version from the Git Repository, add the following line to your Cargo.toml
file:
...
[dependencies]
numerilib = { git = "https://github.com/VLambda/NumeriLib.git", branch = "main" }
...