[][src]Struct ndarray_npy::NpzReader

pub struct NpzReader<R: Read + Seek> { /* fields omitted */ }

Reader for .npz files.

Example

#[macro_use]
extern crate ndarray;
extern crate ndarray_npy;

use ndarray::prelude::*;
use ndarray_npy::NpzReader;
use std::fs::File;

let mut npz = NpzReader::new(File::open("arrays.npz")?)?;
let a: Array2<i32> = npz.by_name("a")?;
let b: Array1<i32> = npz.by_name("b")?;

Methods

impl<R: Read + Seek> NpzReader<R>[src]

pub fn new(reader: R) -> Result<NpzReader<R>, ReadNpzError>[src]

Creates a new .npz file reader.

pub fn len(&self) -> usize[src]

Returns the number of arrays in the .npz file.

pub fn names(&mut self) -> Result<Vec<String>, ReadNpzError>[src]

Returns the names of all of the arrays in the file.

pub fn by_name<S, D>(
    &mut self,
    name: &str
) -> Result<ArrayBase<S, D>, ReadNpzError> where
    S::Elem: ReadableElement,
    S: DataOwned,
    D: Dimension
[src]

Reads an array by name.

pub fn by_index<S, D>(
    &mut self,
    index: usize
) -> Result<ArrayBase<S, D>, ReadNpzError> where
    S::Elem: ReadableElement,
    S: DataOwned,
    D: Dimension
[src]

Reads an array by index in the .npz file.

Auto Trait Implementations

impl<R> Send for NpzReader<R> where
    R: Send

impl<R> Sync for NpzReader<R> where
    R: Sync

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.