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

 Accepted Answer

dummy = strcmp(category, 'beef & Pork')

More Answers (0)

Categories

Tags

Asked:

on 28 Jun 2018

Commented:

on 28 Jun 2018

Community Treasure Hunt

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

Start Hunting!