Intenté calcular la suma de dos matrices (matrices multidimensionales), pero aparece el siguiente mensaje de error:
Uncaught TypeError: Cannot set properties of undefined (setting '0') at matAdd (matrixCalc.js:28)cuando hago este código↓. No entiendo por qué "matSum[0][0]" no está definido.
// M1 + M2 function matAdd(m1, m2){ let matSum = new Array(m1.length); for (let i=0; i<m1.length; i++){ //create a blanco-matrix matSum=new Array(m1[0].length); } if (m1.length == m2.length && m1[0].length==m2[0].length){ for (let i=0; i<m1.length; i++){ for (let j=0; j<m1[0].length; j++){ matSum[i][j]=m1[i][j]+m2[i][j]; //HERE THE ERROR OCCURS } } } else console.log("Dimension-Error") return matSum; }el código con números de línea
Gracias por la ayuda :)
Intenta iniciar tu matriz así
function matAdd(m1, m2){ let matSum = new Array(m1.length); for (let i=0; i<m1.length; i++){ //create a blanco-matrix matSum [i] =new Array(m1[0].length); // for each column } if (m1.length == m2.length && m1[0].length==m2[0].length){ for (let i=0; i<m1.length; i++){ for (let j=0; j<m1[0].length; j++){ matSum[i][j]=m1[i][j]+m2[i][j]; //HERE THE ERROR OCCURS } } } else console.log("Dimension-Error") return matSum; }