how to multiply certain numbers in a matrice
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
if have a matrice A=[1,5,4;3,1,5;6,3,1] But I want to multiply only certain numbers for example A=[2,5,4;3,2,5;6,3,2] how do i do this.
0 comentarios
Respuestas (2)
Guillaume
el 8 de Feb. de 2017
You haven't explain what certain numbers mean. At a guess:
A(A == 1) = A(A == 1) * 2;
0 comentarios
Ver también
Categorías
Más información sobre Operating on Diagonal Matrices 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!