|
SparseReaderReadToEnd Method (SparseDouble, Double)
|
Reads all samples from the file and returns them as a
SparseT sparse vector, together with
their associated output values.
Namespace:
Accord.IO
Assembly:
Accord.IO (in Accord.IO.dll) Version: 3.8.0
Syntax public void ReadToEnd(
out Sparse<double>[] samples,
out double[] outputs
)
Public Sub ReadToEnd (
<OutAttribute> ByRef samples As Sparse(Of Double)(),
<OutAttribute> ByRef outputs As Double()
)
Request Example
View SourceParameters
- samples
- Type: Accord.MathSparseDouble
The samples that have been read from the file. - outputs
- Type: SystemDouble
The output labels associated with each sample in samples.
See Also