Expand description
Advanced .npz file format support for ndarray.
§Accessing .npy Files
- See
ndarray_npy.
§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):
NpzViewMutproviding anNpyViewMutfor each uncompressed.npyfile within the archive
§Features
Both features are enabled by default.
compressed: Enables zip archives with deflate compression.num-complex-0_4: Enables complex element types of cratenum-complex.
Re-exports§
pub use ndarray;pub use ndarray_npy;
Structs§
- NpyView
- Immutable view of memory-mapped
.npyfiles within an.npzfile. - NpyView
Mut - Mutable view of memory-mapped
.npyfiles within an.npzfile. - NpzReader
- Reader for
.npzfiles. - NpzView
- Immutable view for memory-mapped
.npzfiles. - NpzView
Mut - Mutable view for memory-mapped
.npzfiles. - NpzWriter
- Writer for
.npzfiles.
Enums§
- Checksum
Status - Checksum status of an
NpyVieworNpyViewMut. - Read
NpzError - An error reading a
.npzfile. - View
NpzError - An error viewing a
.npzfile. - Write
NpzError - An error writing a
.npzfile.