I want to define 4 objects with their names 'A','B','C' and 'D' in a for loop
I tried something like this but it didn't work
list = {'A','B','C','D'}
for i = 1:1:length(list)
list{i} = class
end
I want to define 4 objects with their names 'A','B','C' and 'D' in a for loop
I tried something like this but it didn't work
list = {'A','B','C','D'}
for i = 1:1:length(list)
list{i} = class
end