diff --git a/@xolotl/run_all_tests.m b/@xolotl/run_all_tests.m index cc318ce9..ddeb8c09 100644 --- a/@xolotl/run_all_tests.m +++ b/@xolotl/run_all_tests.m @@ -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')); diff --git a/build_number b/build_number index 44dec046..44cd9e24 100644 --- a/build_number +++ b/build_number @@ -1 +1 @@ - 1092 + 1114 diff --git a/examples/demo_finite_size.m b/examples/demo_finite_size.m index b8007bcd..fcf1f1ce 100644 --- a/examples/demo_finite_size.m +++ b/examples/demo_finite_size.m @@ -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); @@ -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)')