How to assign 4*1 matrix element as directly as stokes polarization parameter?

2 ビュー (過去 30 日間)
DEEPAK KARARWAL
DEEPAK KARARWAL 2022 年 10 月 5 日
編集済み: DEEPAK KARARWAL 2023 年 2 月 19 日
I want to assign values of Z as S0, S1, S2, S3 ? How do I do it? Is there any command?
Is there any code in MATLAB to plot the Stokes polarization parameter?
% Mullar Matrix analysis
x=0.1
y=0.9
theta=atand(-x/y)
S= [1 ;1 ; 0; 0]
plot(x,y,'-',LineWidth=2),xlabel('2Ex'),ylabel('2Ey'),title('Polarization Ellipse') %,LineWidth=2)
axis equal
axis square
xlim([-1 1])
ylim([-1 1])
grid on
grid minor

回答 (1 件)

Image Analyst
Image Analyst 2022 年 10 月 5 日
Not sure what you mean but how about
Z = [S0, S1, S2, S3];
???
  2 件のコメント
DEEPAK KARARWAL
DEEPAK KARARWAL 2022 年 10 月 6 日
編集済み: DEEPAK KARARWAL 2022 年 10 月 6 日
Actually my whole program responds to only input parameter S0,S1, S2, S3. I have to input these parameter always from column vactor of Z ,manually. So I want these value to be directoly from colum vactor of Z. How to do this please guide...??
Image Analyst
Image Analyst 2022 年 10 月 6 日
編集済み: Image Analyst 2022 年 10 月 6 日
Make your code into a function and call it 4 times:
% Main program:
S0=1 ,S1=0.97, S2=0.2195 ,S3=0
z = [S0, S1, S2, S3];
for k = 1 : numel(z)
results(k) = MullarMatrixAnalysis(z(k));
end
%======================================================================
% Function definition
% Mullar Matrix analysis
function results = MullarMatrixAnalysis(Z)
x=0.1
y=0.9
theta=atand(-x/y)
M=[1 0 0 0 ; 0 cosd(2*theta) sind(2*theta) 0 ; 0 -sind(2*theta) cosd(2*theta) 0 ; 0 0 0 1 ]
% more code......
but I'm not exactly sure what Z is or whether you want to pass in the whole z (all 4 S values) or just one z (only one of the S values). It's really unclear to me how you're using the various z's and S's.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMathematics についてさらに検索

タグ

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by