Creating a logical array within a loop
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Amy Hassett
am 16 Apr. 2020
Kommentiert: Amy Hassett
am 16 Apr. 2020
I am trying to create a logical array in a loop, wherein each iteration of the loop should create a new column in my array:
for i= 1:size(Behaviours) %Behaviours is a 27x1 cell array containing strings
temp = strcmp(Shank2_KOs(k).BehaviourType, Behaviours(i)); %creates the logical vectors
temp_array = temp(:,i);
end
2 Kommentare
Rik
am 16 Apr. 2020
You are overwriting both variables every iteration. What do you want to store in which variable?
Akzeptierte Antwort
Rik
am 16 Apr. 2020
In a loop the indexing works just as normal. I also made some other changes to your code.
temp_array=zeros(____,numel(Behaviours));
for n= 1:numel(Behaviours) %Behaviours is a 27x1 cell array containing strings
temp = strcmp(Shank2_KOs(k).BehaviourType, Behaviours(n)); %creates the logical vectors
temp_array(:,n) = temp;
end
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!