https://github.com/pyk/crabsformer
Work in progress: An easy-to-use fundamental library for scientific computing with Rust, highly inspired by NumPy.
https://github.com/pyk/crabsformer
Last synced: over 1 year ago
JSON representation
Work in progress: An easy-to-use fundamental library for scientific computing with Rust, highly inspired by NumPy.
- Host: GitHub
- URL: https://github.com/pyk/crabsformer
- Owner: pyk
- License: other
- Created: 2019-02-22T13:27:01.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-02-11T13:47:20.000Z (over 6 years ago)
- Last Synced: 2025-02-27T13:21:39.541Z (over 1 year ago)
- Language: Rust
- Homepage: https://docs.rs/crabsformer
- Size: 233 KB
- Stars: 13
- Watchers: 3
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Crabsformer
Crabsformer is an easy-to-use fundamental library for
scientific computing with Rust, highly inspired by
NumPy.
**Notice!** This project is in early phase. Expect bugs and missing features.
## Documentation
- [Quickstart Tutorial][quickstart tutorial]
- [API Reference]
[NumPy]: http://www.numpy.org/
[API Reference]: https://docs.rs/crabsformer
## Usage
Add this to your `Cargo.toml`:
```toml
[dependencies]
crabsformer = "2019.3.17"
```
and this to your crate root:
```rust
use crabsformer::prelude::*;
```
To get started using Crabsformer, read the [quickstart tutorial].
[quickstart tutorial]: https://docs.rs/crabsformer#quickstart-tutorial
## Development
Clone the repository using the following command:
```sh
git clone https://github.com/pyk/Crabsformer.git --depth=1
cd Crabsformer/
```
To build the project run the following command:
```sh
cargo build
```
To run the unit test run the following command:
```sh
cargo test
```
## Getting help
Feel free to start discussion at [GitHub issues].
[Github issues]: https://github.com/pyk/crabsformer/issues/new/choose
## License
Crabsformer is licensed under the [Apache-2.0](./LICENSE) license.
### Contribution
Unless you explicitly state otherwise, any contribution intentionally
submitted for inclusion in Crabsformer by you, as defined in the Apache-2.0
license, shall be licensed as above, without
any additional terms or conditions.