Skip to content

Instantly share code, notes, and snippets.

@AaronJackson
Created September 4, 2013 22:17
Show Gist options
  • Save AaronJackson/6443580 to your computer and use it in GitHub Desktop.
Save AaronJackson/6443580 to your computer and use it in GitHub Desktop.
clear all
p = [ 4 5 6 7 8 9 10 11 12 13 14 ];
timings = [];
for i = 1:length(p)
load( sprintf('timings/%i_localizer.mat', p(i) ) );
row = [ p(i) accumarray( AllBlocks(:,2), AllBlocks(:,4), [], @mean )' ];
timings = [ timings ; row ];
end
timings
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment