how to change matrix element from zero to 1

2 vues (au cours des 30 derniers jours)
amina shafanejad
amina shafanejad le 17 Mai 2015
Commenté : Stephen23 le 17 Mai 2015
hello i have one matrix 4 by 4 which only it has few zero element how can i say it check the element if less than one then change it to one ?

Réponses (1)

the cyclist
the cyclist le 17 Mai 2015
If A is your matrix,
A(A<1) = 1
  3 commentaires
Walter Roberson
Walter Roberson le 17 Mai 2015
for K = 1
A = max(A,1);
end
Stephen23
Stephen23 le 17 Mai 2015
Why use a loop for this? It is faster and neater using the cyclist's vectorized code.

Connectez-vous pour commenter.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by