Please someone solve the error of unexpected error at x=D./2f

1 次查看(过去 30 天)
clear all;
close all;
clc;
n=1.49;
D=0.1:.02:0.3;
f=0.2;
x=D./2f;
NA=n*sin(atan(x));
plot(D,NA);
xlabel('Diameter of lens');
ylabel('Numerical Aperture');
title('Variation in numerical aperture with increase in diameter')

回答(1 个)

Cedric
Cedric 2017-10-24
What is 2f? Is this what you are trying to compute?
x = D ./ (2*f) ;

类别

Help CenterFile Exchange 中查找有关 Programming 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by