|
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
)
Public Shared Function LoadJagged (
stream As Stream,
Optional trim As Boolean = true
) As Array
Request Example
View SourceParameters
- 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:
ArrayA jagged array containing the values available in the given stream.
See Also