ndarray

The ndarray crate provides an n-dimensional container for general elements and for numerics.

Please read the API documentation on docs.rs__

__ https://docs.rs/ndarray/

|buildstatus| |crates|_

.. |buildstatus| image:: https://travis-ci.org/bluss/rust-ndarray.svg?branch=master .. _buildstatus: https://travis-ci.org/bluss/rust-ndarray

.. |crates| image:: http://meritbadge.herokuapp.com/ndarray .. _crates: https://crates.io/crates/ndarray

Highlights

Status and Lookout

Crate Feature Flags

The following crate feature flags are available. They are configured in your Cargo.toml.

How to use with cargo

::

[dependencies]
ndarray = "0.10.0"

How to enable blas integration. Depend on blas-sys directly to pick a blas provider. Note that only end-user projects (not libraries) should select provider::

[dependencies]
ndarray = { version = "0.10.0", features = ["blas"] }
blas-sys = { version = "0.6", default-features = false, features = ["openblas"] }

Recent Changes (ndarray)

__ https://bluss.github.io//rust/2017/04/09/ndarray-0.9/

__ http://bluss.github.io/rust/2016/03/06/ndarray-0.4/

__ https://bluss.github.io/rust-ndarray/master/ndarray/struct.ArrayBase.html#arithmetic-operations

License

Dual-licensed to be compatible with the Rust project.

Licensed under the Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0 or the MIT license http://opensource.org/licenses/MIT, at your option. This file may not be copied, modified, or distributed except according to those terms.