blob: 4f7e1a1c733868974c8e6780437424bdffac6f4c (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Example 1_45
clc();
clear;
//To calculate the thickness of the glass plate
lemda=5000 //units in angstroam
lemda=5000*10^-8 //units in cm
u=1.56
n=16
t=(n*lemda)/(u-1)
printf("Thickness of the glass plate is %.6f cm",t)
|