Click or drag to resize
Accord.NET (logo)

NpzFormatLoadT Method (String, NpzDictionaryT)

Gets a lazily-instantiated array that can be used to load matrices of the specified type from a file in the disk.

Namespace:  Accord.IO
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public static NpzDictionary<T> Load<T>(
	string path,
	out NpzDictionary<T> value
)
where T : class, ICloneable, IList, ICollection, IEnumerable, IStructuralComparable, IStructuralEquatable
Request Example View Source

Parameters

path
Type: SystemString
The path to the file containing the matrix to be loaded.
value
Type: Accord.IONpzDictionaryT
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: NpzDictionaryT
The array to be returned.
See Also