Filter löschen
Filter löschen

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

2 Ansichten (letzte 30 Tage)
Jingtao
Jingtao am 10 Jun. 2023
Bearbeitet: Jingtao am 10 Jun. 2023
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 Kommentar
Star Strider
Star Strider am 10 Jun. 2023
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.
.

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu Polar Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by