Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

161
Views
Visibilidad de matrices en javascript ("indefinido")

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 :)

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

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; }
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!