diff options
Diffstat (limited to '3753/CH1/EX1.1/Ex1_1.sce')
-rw-r--r-- | 3753/CH1/EX1.1/Ex1_1.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3753/CH1/EX1.1/Ex1_1.sce b/3753/CH1/EX1.1/Ex1_1.sce new file mode 100644 index 000000000..eca4b2ce6 --- /dev/null +++ b/3753/CH1/EX1.1/Ex1_1.sce @@ -0,0 +1,15 @@ +//Example number 1.1, Page number 1.35 + +clc;clear;close + + +//Variable declaration +D=1 //Distance in metre +lamda=589*10**-9 //nm to metres +d=2*10**-3 //mm to metre + +//Calculation +Beta=(D*lamda)/d // in mm + +//Result +printf("The fringe width beta=%0.4f mm",(Beta*10**3)) |