|
NpzFormatSave Method (DictionaryString, Array, CompressionLevel)
|
Saves the specified arrays to an array of bytes.
Namespace:
Accord.IO
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static byte[] Save(
Dictionary<string, Array> arrays,
CompressionLevel compression = CompressionLevel.Fastest
)
Public Shared Function Save (
arrays As Dictionary(Of String, Array),
Optional compression As CompressionLevel = CompressionLevel.Fastest
) As Byte()
Request Example
View SourceParameters
- arrays
- Type: System.Collections.GenericDictionaryString, Array
The arrays to be saved to the array of bytes. - compression (Optional)
- Type: System.IO.CompressionCompressionLevel
The compression level to use when compressing the array.
Return Value
Type:
ByteA byte array containig the saved arrays.
See Also