ET_PDToolkit/PDToolkit/@PDSubject/removeDuplicateLabels.m

5 lines
139 B
Mathematica
Raw Normal View History

2018-06-12 14:49:55 +02:00
function[obj] = removeDuplicateLabels(obj)
for s = 1:length(obj.sessions)
obj.sessions(s) = obj.sessions(s).removeDuplicateLabels;
end