Skip to content

Commit

Permalink
ready to make new release
Browse files Browse the repository at this point in the history
  • Loading branch information
sg-s committed May 13, 2019
1 parent 7977359 commit afa6aaf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 0 additions & 3 deletions @xolotl/run_all_tests.m
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@
% rebuild cpplab cache just to be safe
cpplab.rebuildCache;

% compile GetMD5
hashlib.md5compile;

this_dir = fileparts(fileparts(which('xolotl.run_all_tests')));
all_tests = dir(pathlib.join(this_dir,'examples','demo*.m'));

Expand Down
2 changes: 1 addition & 1 deletion build_number
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1092
1114
4 changes: 2 additions & 2 deletions examples/demo_finite_size.m
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

show_area = [1 10 50 100 200 400]*1e-6;
clear ax
for i = 1:6
for i = 6:-1:1
ax(i) = subplot(6,2,(i-1)*2+1); hold on
x.reset;
x.AB.A = show_area(i);
Expand All @@ -65,7 +65,7 @@


axf = subplot(2,2,2); hold on
errorbar(all_area*1e6,mean(all_f,2),corelib.sem(all_f'),'k')
errorbar(all_area*1e6,mean(all_f,2),std(all_f')./mean(all_f,2)','k')
set(gca,'XScale','linear','YScale','linear')
xlabel('Area (um^2)')
ylabel('Firing rate (Hz)')
Expand Down

0 comments on commit afa6aaf

Please sign in to comment.