For Loop to read rows on a cell array
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Michael Angeles
le 25 Jan 2022
Commenté : Michael Angeles
le 28 Jan 2022
need help on the following...
key = 'BB';
data = cell(1,24);
data = {'BB'};
for i = size(data);
%compare key to each data on each column
if key = data;
%count number of elements that matches with key
counts = count how many times BB occurs
%number of elements that match divided by size of data
occurrence = counts/side of data
0 commentaires
Réponse acceptée
David Hill
le 25 Jan 2022
Not sure if this the correct guess.
y=sum(strcmp(yourCell,'BB'),2)/size(yourCell,2);
5 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Data Type Conversion dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!