How to replace 0 value with 3 in Matlab
Afficher commentaires plus anciens
Hello, I hope you are doing well, I am trying to do two thing.
1. Find the number exist in fifth column of data e.g 0,1,2
2. Replace the 0 value in fifth column to 3
Réponses (1)
KSSV
le 2 Déc 2022
c5 = Dataset(:,5) ;
% Find the number of 0, 1, 2
idx = c5 == 0 | c5 == 1 | c5 == 2 ; % gives logical indices
nnz(idx) % this gives total number
% Replace 0 with 3
c5(c5==0) = 3 ;
Catégories
En savoir plus sur Logical dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!