I need to create a dynamic double[][].I'm not being able to do this. The only way I can create a double[][] islike thisdouble d[][] = new double[][]{ {1,2,3,4,5}{6,7,8,9,10} }Any ideas on how to create this dynamically ?