1

So the formula for the airy pattern is

source: wikipedia

with J being the Bessel function besselj(1,x) in MatLab. How would i plot this and approximate it for just the x values of 0-10?

Tim Long
  • 13,508
  • 19
  • 79
  • 147
bobby
  • 11
  • 1
  • 3

1 Answers1

2
x = [0:0.1:10]; % kasin(phi)
I0 = 1;
I = I0*(2*besselj(1,x)./x).^2
plot(x,I)
guest
  • 21
  • 2