ET_PDToolkit/PDToolkit/@PDExperiment/removeDuplicateLabels.m

6 lines
140 B
Mathematica
Raw Normal View History

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