Click or drag to resize
Accord.NET (logo)

NpyFormatLoadJagged Method (Stream, Boolean)

Loads a jagged array from a stream.

Namespace:  Accord.IO
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public static Array LoadJagged(
	Stream stream,
	bool trim = true
)
Request Example View Source

Parameters

stream
Type: System.IOStream
The stream containing the matrix to be loaded.
trim (Optional)
Type: SystemBoolean
Pass true to remove null or empty elements from the loaded array.

Return Value

Type: Array
A jagged array containing the values available in the given stream.
See Also