Generate a dummy with a cell
Mostrar comentarios más antiguos
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
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Data Types en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!