Call specific rows of a table then choose rows that has specific criteria in those rows .
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Zeynab Mousavikhamene
am 30 Aug. 2019
Beantwortet: Guillaume
am 30 Aug. 2019
I want to say for each radius celltracker_group2.time == 10 if radius<=3 and cell_type==4 then GroupCount=GroupCoutn+1.
Any help?
0 Kommentare
Akzeptierte Antwort
Guillaume
am 30 Aug. 2019
I want to say for each radius celltracker_group2.time == 10 if radius<=3 and cell_type==4 then GroupCount=GroupCoutn+1
Easily done:
selectedrows = celltracker_group2.time == 10 & celltracker_group2.radius <= 3 & celltracker_group2.celltype == 4; %logical vector indicating which rows match the condition
celltracker_group2.GroupCount(selectedrows) = celltracker_group2.GroupCount(selectedrows) + 1; %add 1 to groupcount of the rows that match the condition
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical 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!