how can i divide elements of matrix M_0(m,n,k) by the elements of M_1(m,n,k) ?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Joseph
el 7 de Ag. de 2015
Respondida: Image Analyst
el 7 de Ag. de 2015
how can i divide elements of matrix M_0(m,n,k) by the elements of M_1(m,n,k) ?
0 comentarios
Respuesta aceptada
Image Analyst
el 7 de Ag. de 2015
Use dot slash to divide element-by-element:
outputMatrix = M_0 ./ M_1;
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Numeric Types 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!