[−][src]Struct ndarray_npy::NpzWriter
Writer for .npz
files.
Example
#[macro_use] extern crate ndarray; extern crate ndarray_npy; use ndarray::prelude::*; use ndarray_npy::NpzWriter; use std::fs::File; let mut npz = NpzWriter::new(File::create("arrays.npz")?); let a: Array2<i32> = array![[1, 2, 3], [4, 5, 6]]; let b: Array1<i32> = array![7, 8, 9]; npz.add_array("a", &a)?; npz.add_array("b", &b)?;
Methods
impl<W: Write + Seek> NpzWriter<W>
[src]
pub fn new(writer: W) -> NpzWriter<W>
[src]
Create a new .npz
file without compression. See numpy.savez
.
pub fn new_compressed(writer: W) -> NpzWriter<W>
[src]
Creates a new .npz
file with compression. See numpy.savez_compressed
.
pub fn add_array<N, S, D>(
&mut self,
name: N,
array: &ArrayBase<S, D>
) -> Result<(), WriteNpzError> where
N: Into<String>,
S::Elem: WritableElement,
S: Data,
D: Dimension,
[src]
&mut self,
name: N,
array: &ArrayBase<S, D>
) -> Result<(), WriteNpzError> where
N: Into<String>,
S::Elem: WritableElement,
S: Data,
D: Dimension,
Adds an array with the specified name
to the .npz
file.
Auto Trait Implementations
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,