diff options
Diffstat (limited to 'simple_thin_layer_model/pp.m')
-rw-r--r-- | simple_thin_layer_model/pp.m | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/simple_thin_layer_model/pp.m b/simple_thin_layer_model/pp.m new file mode 100644 index 0000000..f59f19c --- /dev/null +++ b/simple_thin_layer_model/pp.m @@ -0,0 +1,21 @@ +delta_2photon_noise + +figure(1) +plot(delta_2photon_1, mean_mor_signal_1(end,:) ) +hold all +plot(delta_2photon_1, mean_eit_signal_1(end,:) ) + +legend( {'mor', 'eit'} ) + +figure(2) +plot(delta_2photon_1, stderr_mor_signal_1(end,:) ) +hold all +plot(delta_2photon_1, stderr_eit_signal_1(end,:) ) + +legend( {'mor', 'eit'} ) + +figure(3) +plot(delta_2photon_1, stderr_eit_signal_1(end,:)./stderr_mor_signal_1(end,:) ) +hold all + +legend( {'noise eit/mor'} ) |