encog-dotnet-core
encog-dotnet-core copied to clipboard
Question about TrainerHelper.GenerateInputz
If I understand the TrainerHelper.GenerateInputz method correctly, it should take all items of a jagged array and return these elements as a one-dimensional array of double
:s (right?).
If this is a correct interpretation, then I think that this code line should use ArrayList.AddRange
:
al.AddRange((double[])doublear);
instead of ArrayList.Add
.