blob: 9d52b4fec0073ac7c24fd14ed153684fd344afbe (
plain)
1
2
3
4
5
6
7
8
|
//Example 7_10
clc();
clear;
//To calculate the refractive index of the material of the core
NA=0.39
delta=0.05
n1=NA/sqrt(2*delta)
printf("The refractive index of the material of the core is %.4f",n1)
|