blob: 81a9265d7f111348d3b1577c64d56316affe19f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clc
//
//
//
//Variable declaration
lambdaa=5.46*10**-7 //Wavelength
t=6.3*10**-6 //thickness
//Calculations
mu=((6*lambdaa)/t)+1
//Result
printf("\n The refractive index is %0.3f ",mu)
|