How can I convert an array of arrays of doubles to just an array of doubles using Scala 2.10.4?
Convert: Array[Array[Double]] => Array[Double]
How can I convert an array of arrays of doubles to just an array of doubles using Scala 2.10.4?
Convert: Array[Array[Double]] => Array[Double]
Use
flatten
: