When I divide two matrix of the same size (5x1) I get a 5x5 matrix where the first column has the answer and the next 4 are zeros.
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Jason Burke
el 10 de Ag. de 2021
Editada: Jason Burke
el 10 de Ag. de 2021
When I divide two matrix of the same size (5x1) I get a 5x5 matrix where the first column has the answer and the next 4 are zeros.
What am I doing wrong.
m1 = [2; 4; 5; 6; 9];
m2 = [1; 2; 5; 3; 3];
ans = m1 / m2;
0 comentarios
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrix Indexing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!