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

1 Ansicht (letzte 30 Tage)
Soham Jadhav
Soham Jadhav am 23 Okt. 2017
Beantwortet: Cedric am 24 Okt. 2017
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')

Antworten (1)

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

Kategorien

Mehr zu Programming finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by