Generate a dummy with a cell
Afficher commentaires plus anciens
I want to generate a dummy for my dataset. I have a (48x1 cell called category)
dummy=[];
for i=1:1:48
if isequal(category(i), 'Beef & Pork')
dummy(i)=1
else
dummy(i)=0
end
end
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Data Types 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!