Código Javascript:
Ver original
public class Test { public static double[][] copiarMatrices(double[][] origen, double[][] destino) { destino = new double[origen.length][origen[0].length]; for (int x = 0; x < origen.length; x++) { for (int y = 0; y < origen[0].length; y++) { destino[x][y] = origen[x][y]; } } return destino; } public static void main(String[] args) { double[][] m = new double[][] { {10, 20, 30}, {40, 50, 60} }; double[][] m1 = copiarMatrices(m, m1); for (int x = 0; x < m.length; x++) for (int y = 0; y < m[0].length; y++) System.out.print(m1[x][y]); } }
¿No puedo inicializar el Array m1 pasándole la referencia al método?
Muchas gracias, saludos.