diff options
author | Eugeniy Mikhailov <evgmik@gmail.com> | 2011-11-22 10:18:38 -0500 |
---|---|---|
committer | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2020-09-21 16:33:21 -0400 |
commit | b1480bba4352d00d66ecd0c3245ec141a278bdc1 (patch) | |
tree | c5ad659a4e8dfb4d37dd5fa1814ec669be3ad30d | |
parent | af117859bfb3cc9bb1999ba00e89d68e854347ac (diff) | |
download | multi_mode_eit-b1480bba4352d00d66ecd0c3245ec141a278bdc1.tar.gz multi_mode_eit-b1480bba4352d00d66ecd0c3245ec141a278bdc1.zip |
saving to file
-rw-r--r-- | squeezing_filter/pp_tasks.m | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/squeezing_filter/pp_tasks.m b/squeezing_filter/pp_tasks.m index 45cc0dd..6e5c692 100644 --- a/squeezing_filter/pp_tasks.m +++ b/squeezing_filter/pp_tasks.m @@ -33,6 +33,12 @@ Ep_out.y= 1i*(Ep_out.left - Ep_out.right)/sqrt(2); +B_str=num2str(B_field(1),"%g"); +ofname_sfx=strcat('Bfield=',B_str); +ofname=strcat('pp_results/detuning_dependence_for_',B_str,'.mat'); +save(ofname, 'Ep_out', 'B_field', 'detunings', 'Ep', 'Ed', 'xi_left', 'xi_right', 'xi_x', 'xi_y'); + + figure(7); plot(detunings, abs(Ep_out.x).^2 ); legend('x'); |