Crate ndarray_npz

Source
Expand description

Advanced .npz file format support for ndarray.

§Accessing .npy Files

§Accessing .npz Files

  • Reading: NpzReader
  • Writing: NpzWriter
  • Immutable viewing (primarily for use with memory-mapped files):
  • Mutable viewing (primarily for use with memory-mapped files):

§Features

Both features are enabled by default.

  • compressed: Enables zip archives with deflate compression.
  • num-complex-0_4: Enables complex element types of crate num-complex.

Re-exports§

pub use ndarray;
pub use ndarray_npy;

Structs§

NpyView
Immutable view of memory-mapped .npy files within an .npz file.
NpyViewMut
Mutable view of memory-mapped .npy files within an .npz file.
NpzReader
Reader for .npz files.
NpzView
Immutable view for memory-mapped .npz files.
NpzViewMut
Mutable view for memory-mapped .npz files.
NpzWriter
Writer for .npz files.

Enums§

ChecksumStatus
Checksum status of an NpyView or NpyViewMut.
ReadNpzError
An error reading a .npz file.
ViewNpzError
An error viewing a .npz file.
WriteNpzError
An error writing a .npz file.