meshgrid 0.1.0

Meshgrid functionality for Rust.
Documentation
  • Coverage
  • 0%
    0 out of 2 items documented0 out of 1 items with examples
  • Size
  • Source code size: 1.46 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 973.34 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • DimChtz/rust-meshgrid
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • DimChtz

rust-meshgrid (meshgrid) - v0.1.0

Meshgrid functionality for Rust.

Examples

2D loop.

for &(i, j) in meshgrid::new(1..3, 1..5).iter() {

        println!("[{}, {}]", i, j);
        
        // Do-stuff with i, j
}

Installation

Add this line to your Cargo.toml:

[dependencies]
meshgrid = "0.1.0"

and then add this line to your main.rs:

extern crate meshgrid;