|
NpzFormatLoadT Method (Byte)
|
Gets a lazily-instantiated array that can be used to load
matrices of the specified type from an array of bytes.
Namespace:
Accord.IO
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static NpzDictionary<T> Load<T>(
byte[] bytes
)
where T : class, ICloneable, IList, ICollection, IEnumerable, IStructuralComparable, IStructuralEquatable
Public Shared Function Load(Of T As {Class, ICloneable, IList, ICollection, IEnumerable, IStructuralComparable, IStructuralEquatable}) (
bytes As Byte()
) As NpzDictionary(Of T)
Request Example
View SourceParameters
- bytes
- Type: SystemByte
The bytes that contain the matrix to be loaded.
Type Parameters
- T
- The type to be loaded from the npy-formatted file.
Return Value
Type:
NpzDictionaryTThe array to be returned.
See Also