diff options
author | Eugeniy Mikhailov <evgmik@gmail.com> | 2011-11-18 00:15:33 -0500 |
---|---|---|
committer | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2020-09-21 16:33:21 -0400 |
commit | 47a56000e7c6d248087da92412aedbf60da6cc1b (patch) | |
tree | eef57d09a968c73233b5c9851e3b3192dfafb6e8 /faraday_and_psr/pp_tasks.m | |
parent | 50b7ff4f639fa1b73dc7bc7a3f02c5bbd199a496 (diff) | |
download | multi_mode_eit-47a56000e7c6d248087da92412aedbf60da6cc1b.tar.gz multi_mode_eit-47a56000e7c6d248087da92412aedbf60da6cc1b.zip |
small modifications
Diffstat (limited to 'faraday_and_psr/pp_tasks.m')
-rw-r--r-- | faraday_and_psr/pp_tasks.m | 59 |
1 files changed, 35 insertions, 24 deletions
diff --git a/faraday_and_psr/pp_tasks.m b/faraday_and_psr/pp_tasks.m index 82bcdac..a3919ba 100644 --- a/faraday_and_psr/pp_tasks.m +++ b/faraday_and_psr/pp_tasks.m @@ -29,37 +29,48 @@ Ep_out.y= 1i*(Ep_out.left - Ep_out.right)/sqrt(2); xi_x=(xi_right+xi_left)/sqrt(2); xi_y=(1i*xi_right-1i*xi_left)/sqrt(2); -figure(1); -plot(B_field, real(xi_x), B_field, real(xi_y)); -legend('x','y'); -title('xi-real'); -figure(2); -plot(B_field, imag(xi_x), B_field, imag(xi_y)); -legend('x','y'); -title('xi-imag'); +%figure(1); +%plot(B_field, real(xi_x), B_field, real(xi_y)); +%legend('x','y'); +%title('xi-real'); -figure(3); -plot(B_field, real(xi_left), B_field, real(xi_right)); -legend('left','right'); -title('xi-real'); +%figure(2); +%plot(B_field, imag(xi_x), B_field, imag(xi_y)); +%legend('x','y'); +%title('xi-imag'); -figure(4); -plot(B_field, imag(xi_left), B_field, imag(xi_right)); -legend('left','right'); -title('xi-imag'); +%figure(3); +%plot(B_field, real(xi_left), B_field, real(xi_right)); +%legend('left','right'); +%title('xi-real'); -figure(5); -plot(B_field, abs(Ep_out.x).^2, B_field, abs(Ep_out.y).^2 ); -legend('x','y'); -title('Signal out'); +%figure(4); +%plot(B_field, imag(xi_left), B_field, imag(xi_right)); +%legend('left','right'); +%title('xi-imag'); -figure(6); -plot(B_field, abs(Ep_out.left).^2, B_field, abs(Ep_out.right).^2 ); -legend('left','right'); -title('Signal out'); +%figure(5); +%plot(B_field, abs(Ep_out.x).^2, B_field, abs(Ep_out.y).^2 ); +%legend('x','y'); +%title('Signal out'); + +%figure(6); +%plot(B_field, abs(Ep_out.left).^2, B_field, abs(Ep_out.right).^2 ); +%legend('left','right'); +%title('Signal out'); figure(7); +plot(B_field, abs(Ep_out.x).^2 ); +legend('x'); +title('Signal out'); + +figure(8); plot(B_field, abs(Ep_out.y).^2 ); legend('y'); title('Signal out'); + +figure(9); +plot(B_field, abs(Ep_out.x).^2-abs(Ep_out.y).^2 ); +legend('x-y'); +title('Differential x-y out'); |