필터 지우기
필터 지우기

Create a matrix representing the gradual-width Fermat spiral slit mask

조회 수: 2 (최근 30일)
Jingtao
Jingtao 2023년 6월 10일
편집: Jingtao 2023년 6월 10일
I would like to create a N*N matrix T = zeros(N) to represent the gradual-width Fermat spiral mask given by
where rho and theta are the radius and azimuth of the polar coordinates, respectively. The parameters in the above equation are
N = 1024; % space sampling points
pixSize = 14e-6; % pixel size, unit: m
x = linspace(-pixSize*N/2, pixSize*N/2, N);
y = x;
[X,Y] = meshgrid(x,y);
[THETA,RHO] = cart2pol(X,Y);
z0 = 1;
lambda = 0.633e-6;
l = 4;
rho0 = 1.4e-3;
A = 0.015e-3;
d0 = 0.02e-3;
I have a little difficulty in creating such matrix. Can someone help? Thanks a lot.
And I think it should be like this.
  댓글 수: 1
Star Strider
Star Strider 2023년 6월 10일
You want to do the opposite of this:
[THETA,RHO] = cart2pol(X,Y);
Instead, create the initial matrices in polar coordinates, then use the pol2cart function to create the Cartesian matrix, and plot it.
I will leave the creation of the ρ and θ matrices, and writing the code for to you.
.

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

답변 (0개)

카테고리

Help CenterFile Exchange에서 Polar Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by