How to plot different graph in one figure?

조회 수: 3 (최근 30일)
DEEPAK KARARWAL
DEEPAK KARARWAL 2023년 1월 2일
편집: DEEPAK KARARWAL 2023년 2월 19일
% Mullar Matrix analysis
clc
clear all
% [x,y]=meshgrid(-1:0.1:1,-1:0.1:1)
% y=1
% x=2
for x=-1:0.1:1
Y=c*Ey.*sind(t);
% M=[Z(1,1), Z(2,1), Z(3,1), Z(4,1)];
% G=stokes(fv)
% stokes(M)
figure(1)
plot(X,Y,'-',LineWidth=2),xlabel('2Ex'),ylabel('2Ey'),title('Polarization Ellipse') %,LineWidth=2)
hold on
end
end
This is my Code for polarization state of light, where I am doing a simulation of polarization rotation using Mueller matrix method.
  1. My input is in terms of position coordinates which varies from x=-1:1 and y=-1:1
  2. I can vary x and keep y constant, and can do same for y keeping x constant, This way I got polarization state from Hz. and Vr. scan.
  3. My device has dimention 2*2cm^2 where if I place this device on coordinate system -1 distance from left +1 for right and bottom and top respectively.
  4. I can plot any graph for a particular position by giving input.
  5. when I try for loop all the states are plotted at same position, I need to plot them at different spatial position (exactly at same input which I enter).
  6. I want what coordinate I give input, my polarization state to be plotted at that input. Different position have different stokes parameters , So different position (my input) of device have different state of polarization which I want to plot.
  7. Kindly help, how can I plot all the stokes parameter of my input in one figure. Code is attached above.
  댓글 수: 5
DEEPAK KARARWAL
DEEPAK KARARWAL 2023년 1월 2일
actually all the figure that I am generation by plotting (X,Y), I want to plot them in such away that they are spatially seperated in such a way that I have different location for (x,y). I have different plot for each (x,y) & I want to plot them seperately in one figure. I don't know vector field plotting currently.
I can do also like
y=-0.1
x=-1:0.2:1
and plots will be generated for a line scan of x from -1 to 1 at step of 0.2
So I want to plot all these graphs on a line where plot(X,Y) give me output, at coordinate input (x,y) position. like as shown below, 1 2 3 marked, so is there any method for plotting of these various graphs so that I can make spatial variation in tem like subplotting etc. .
Torsten
Torsten 2023년 1월 2일
편집: Torsten 2023년 1월 2일
Sorry, you lost me here.
For a vector field plot like in a), b), c) and d), you can use "quiver".

댓글을 달려면 로그인하십시오.

답변 (1개)

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2023년 1월 2일
You can try to use polar plot with polar(), e.g.:
...
figure(1)
polar(X,Y)
xlabel('2Ex'),ylabel('2Ey'),title('Polarization Ellipse')
hold all
...

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by