I would like to create an Array of Arrays like Array[Array[Double]] this,such that the outer array is of a different length say 11 and each elements of this array is another array of another size say 100. So in short create an array which has 11 arrays as elements in it ,which in turn has 100 entries in it using Scala
Asked
Active
Viewed 52 times
0
-
How do I specify a size of 100 for all the the 11 arrays? – user1105412 Mar 23 '17 at 12:00
-
1Seems we are having problem with understading your question. Is structure you are trying to obtain equivalent to two dimensional array of 100x11? If yes please read post that @Yuval linked. – Marcin Tarka Mar 23 '17 at 12:32
-
Thankyou @Yuval for pointing me to the correct post . – user1105412 Mar 24 '17 at 10:06
-
Thankyou @Marcin for confirming the same. – user1105412 Mar 24 '17 at 10:07