Struct ndarray::Zip [] [src]

pub struct Zip<Parts, D> { /* fields omitted */ }

Lock step function application across several arrays or other producers.

Zip allows matching several arrays to each other elementwise and applying a function over all tuples of elements (one element from each input at a time).

In general, the zip uses a tuple of producers (NdProducer trait) that all have to be of the same shape. The NdProducer implementation defines what its element type is (for example if it's a shared reference, mutable reference or an array view etc).

If all the input arrays are of the same memory order the zip performs much better and the compiler can usually vectorize the loop (if applicable).

The order elements are visited is not specified. The producers don’t have to have the same element type.

The Zip has two methods for function application: apply and fold_while. These can be called several times on the same zip object. The zip object can be split, which allows parallelization.

See also the azip!() macro which offers a convenient shorthand to common ways to use Zip.

use ndarray::Zip;
use ndarray::Array2;

type M = Array2<f64>;

let mut a = M::zeros((64, 64));
let b = M::zeros((64, 64));
let c = M::zeros((64, 64));
let d = M::zeros((64, 64));

Zip::from(&mut a).and(&b).and(&c).and(&d).apply(|w, &x, &y, &z| {
    *w += x + y * z;
});

Methods

impl<P, D> Zip<(P,), D> where D: Dimension, P: NdProducer<Dim=D>
[src]

Create a new Zip from the input array array.

The Zip will take the exact dimension of array and all inputs must have the same dimensions (or be broadcast to them).

impl<Parts, D> Zip<Parts, D> where D: Dimension
[src]

Return a the number of element tuples in the Zip

impl<D: Dimension, P1: NdProducer<Dim=D>> Zip<(P1,), D>
[src]

Apply a function to all elements of the input arrays, visiting elements in lock step.

Apply a fold function to all elements of the input arrays, visiting elements in lock step.

The fold continues while the return value is a FoldWhile::Continue.

Include the producer p in the Zip.

Panics if p’s shape doen't match the Zip’s exactly.

Include the producer p in the Zip, broadcasting if needed.

If their shapes disagree, rhs is broadcast to the shape of self.

Panics if broadcasting isn’t possible.

Split the Zip evenly in two.

It will be split in the way that best preserves element locality.

impl<D: Dimension, P1: NdProducer<Dim=D>, P2: NdProducer<Dim=D>> Zip<(P1, P2), D>
[src]

Apply a function to all elements of the input arrays, visiting elements in lock step.

Apply a fold function to all elements of the input arrays, visiting elements in lock step.

The fold continues while the return value is a FoldWhile::Continue.

Include the producer p in the Zip.

Panics if p’s shape doen't match the Zip’s exactly.

Include the producer p in the Zip, broadcasting if needed.

If their shapes disagree, rhs is broadcast to the shape of self.

Panics if broadcasting isn’t possible.

Split the Zip evenly in two.

It will be split in the way that best preserves element locality.

impl<D: Dimension, P1: NdProducer<Dim=D>, P2: NdProducer<Dim=D>, P3: NdProducer<Dim=D>> Zip<(P1, P2, P3), D>
[src]

Apply a function to all elements of the input arrays, visiting elements in lock step.

Apply a fold function to all elements of the input arrays, visiting elements in lock step.

The fold continues while the return value is a FoldWhile::Continue.

Include the producer p in the Zip.

Panics if p’s shape doen't match the Zip’s exactly.

Include the producer p in the Zip, broadcasting if needed.

If their shapes disagree, rhs is broadcast to the shape of self.

Panics if broadcasting isn’t possible.

Split the Zip evenly in two.

It will be split in the way that best preserves element locality.

impl<D: Dimension, P1: NdProducer<Dim=D>, P2: NdProducer<Dim=D>, P3: NdProducer<Dim=D>, P4: NdProducer<Dim=D>> Zip<(P1, P2, P3, P4), D>
[src]

Apply a function to all elements of the input arrays, visiting elements in lock step.

Apply a fold function to all elements of the input arrays, visiting elements in lock step.

The fold continues while the return value is a FoldWhile::Continue.

Include the producer p in the Zip.

Panics if p’s shape doen't match the Zip’s exactly.

Include the producer p in the Zip, broadcasting if needed.

If their shapes disagree, rhs is broadcast to the shape of self.

Panics if broadcasting isn’t possible.

Split the Zip evenly in two.

It will be split in the way that best preserves element locality.

impl<D: Dimension, P1: NdProducer<Dim=D>, P2: NdProducer<Dim=D>, P3: NdProducer<Dim=D>, P4: NdProducer<Dim=D>, P5: NdProducer<Dim=D>> Zip<(P1, P2, P3, P4, P5), D>
[src]

Apply a function to all elements of the input arrays, visiting elements in lock step.

Apply a fold function to all elements of the input arrays, visiting elements in lock step.

The fold continues while the return value is a FoldWhile::Continue.

Include the producer p in the Zip.

Panics if p’s shape doen't match the Zip’s exactly.

Include the producer p in the Zip, broadcasting if needed.

If their shapes disagree, rhs is broadcast to the shape of self.

Panics if broadcasting isn’t possible.

Split the Zip evenly in two.

It will be split in the way that best preserves element locality.

impl<D: Dimension, P1: NdProducer<Dim=D>, P2: NdProducer<Dim=D>, P3: NdProducer<Dim=D>, P4: NdProducer<Dim=D>, P5: NdProducer<Dim=D>, P6: NdProducer<Dim=D>> Zip<(P1, P2, P3, P4, P5, P6), D>
[src]

Apply a function to all elements of the input arrays, visiting elements in lock step.

Apply a fold function to all elements of the input arrays, visiting elements in lock step.

The fold continues while the return value is a FoldWhile::Continue.

Split the Zip evenly in two.

It will be split in the way that best preserves element locality.

Trait Implementations

impl<Parts: Debug, D: Debug> Debug for Zip<Parts, D>
[src]

Formats the value using the given formatter.

impl<Parts: Clone, D: Clone> Clone for Zip<Parts, D>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more