10 lines
190 B
Matlab
10 lines
190 B
Matlab
function[e] = plot_aggregate(e, index, highlighted)
|
|
|
|
|
|
display(sprintf('plotting %d', index));
|
|
|
|
hold on;
|
|
|
|
|
|
plot(e.aggregates(index).mean, 'LineWidth', 3, 'Color', e.aggregates(index).color);
|