Click or drag to resize
Accord.NET (logo)

NpzFormat Class

Provides static methods to save and load files saved in NumPy's .npz format.
Inheritance Hierarchy
SystemObject
  Accord.IONpzFormat

Namespace:  Accord.IO
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public static class NpzFormat
Request Example View Source
Methods
  NameDescription
Public methodStatic memberLoadT(Byte)
Gets a lazily-instantiated array that can be used to load matrices of the specified type from an array of bytes.
Public methodStatic memberLoadT(Stream)
Gets a lazily-instantiated array that can be used to load matrices of the specified type from a stream.
Public methodStatic memberLoadT(String)
Gets a lazily-instantiated array that can be used to load matrices of the specified type from a file in the disk.
Public methodStatic memberLoadT(Byte, T)
Loads an array of the specified type from an array of bytes.
Public methodStatic memberLoadT(Stream, NpzDictionaryT)
Gets a lazily-instantiated array that can be used to load matrices of the specified type from a stream.
Public methodStatic memberLoadT(Stream, T)
Loads an array of the specified type from a file in the disk.
Public methodStatic memberLoadT(String, NpzDictionaryT)
Gets a lazily-instantiated array that can be used to load matrices of the specified type from a file in the disk.
Public methodStatic memberLoadT(String, T)
Loads an array of the specified type from a file in the disk.
Public methodStatic memberLoadJagged(Byte)
Gets a lazily-instantiated array that can be used to load jagged matrices from an array of bytes.
Public methodStatic memberLoadJagged(String)
Gets a lazily-instantiated array that can be used to load jagged matrices from a file in the disk.
Public methodStatic memberLoadJagged(Stream, Boolean)
Loads a jagged array from a stream.
Public methodStatic memberLoadMatrix(Byte)
Gets a lazily-instantiated array that can be used to load multi-dimensional matrices from an array of bytes.
Public methodStatic memberLoadMatrix(Stream)
Gets a lazily-instantiated array that can be used to load multi-dimensional matrices from a stream.
Public methodStatic memberLoadMatrix(String)
Gets a lazily-instantiated array that can be used to load multi-dimensional matrices from a file in the disk.
Public methodStatic memberSave(Array, CompressionLevel)
Saves the specified array to an array of bytes.
Public methodStatic memberSave(DictionaryString, Array, CompressionLevel)
Saves the specified arrays to an array of bytes.
Public methodStatic memberSave(Array, String, CompressionLevel)
Saves the specified array to a file in the disk.
Public methodStatic memberSave(DictionaryString, Array, String, CompressionLevel)
Saves the specified arrays to a file in the disk.
Public methodStatic memberSave(Array, Stream, CompressionLevel, Boolean)
Saves the specified array to a stream.
Public methodStatic memberSave(DictionaryString, Array, Stream, CompressionLevel, Boolean)
Saves the specified arrays to a file in the disk.
Top
See Also