|
NpzFormatLoadT Method (Byte, T)
|
Loads an array 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 void Load<T>(
byte[] bytes,
out T value
)
where T : class, ICloneable, IList, ICollection, IEnumerable, IStructuralComparable, IStructuralEquatable
Public Shared Sub Load(Of T As {Class, ICloneable, IList, ICollection, IEnumerable, IStructuralComparable, IStructuralEquatable}) (
bytes As Byte(),
<OutAttribute> ByRef value As T
)
Request Example
View SourceParameters
- bytes
- Type: SystemByte
The bytes that contain the matrix to be loaded. - value
- Type: T
The object to be read. This parameter can be used to avoid the
need of specifying a generic argument to this function.
Type Parameters
- T
- The type to be loaded from the npy-formatted file.
Return Value
Type:
The array to be returned.
See Also