ET_PDToolkit/PDToolkit/@PDExperiment/calculate_aggregates.m

7 lines
168 B
Mathematica
Raw Normal View History

2018-06-12 14:49:55 +02:00
function[e] = calculate_aggregates(e)
for a = 1:length(e.aggregates)
display(sprintf('calculating aggregate %d...', a));
e = e.calculate_aggregate(a);
end