how to multiply certain numbers in a matrice
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (2)
Guillaume
il 8 Feb 2017
You haven't explain what certain numbers mean. At a guess:
A(A == 1) = A(A == 1) * 2;
0 Commenti
Vedere anche
Categorie
Scopri di più su Operating on Diagonal Matrices in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!