Click or drag to resize
Accord.NET (logo)

NpyFormat Class

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

Namespace:  Accord.IO
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public static class NpyFormat
Request Example View Source
Methods
  NameDescription
Public methodStatic memberLoadT(Byte)
Loads an array of the specified type from a byte array.
Public methodStatic memberLoadT(Stream)
Loads an array of the specified type from a stream.
Public methodStatic memberLoadT(String)
Loads an array of the specified type from a file in the disk.
Public methodStatic memberLoadT(Byte, T)
Loads an array of the specified type from a file in the disk.
Public methodStatic memberLoadT(Stream, T)
Loads an array of the specified type from a stream.
Public methodStatic memberLoadT(String, T)
Loads an array of the specified type from a file in the disk.
Public methodStatic memberLoadJagged(Byte)
Loads a jagged array from an array of bytes.
Public methodStatic memberLoadJagged(String)
Loads a jagged array from a file in the disk.
Public methodStatic memberLoadJagged(Stream, Boolean)
Loads a jagged array from a stream.
Public methodStatic memberLoadMatrix(Byte)
Loads a multi-dimensional array from an array of bytes.
Public methodStatic memberLoadMatrix(Stream)
Loads a multi-dimensional array from a stream.
Public methodStatic memberLoadMatrix(String)
Loads a multi-dimensional array from a file in the disk.
Public methodStatic memberSave(Array)
Saves the specified array to an array of bytes.
Public methodStatic memberSave(Array, Stream)
Saves the specified array to a stream using the npy format.
Public methodStatic memberSave(Array, String)
Saves the specified array to the disk using the npy format.
Top
See Also