summaryrefslogtreecommitdiff
path: root/3411/CH3/EX3.3/Ex3_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3411/CH3/EX3.3/Ex3_3.sce')
-rw-r--r--3411/CH3/EX3.3/Ex3_3.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3411/CH3/EX3.3/Ex3_3.sce b/3411/CH3/EX3.3/Ex3_3.sce
new file mode 100644
index 000000000..627f8ab5b
--- /dev/null
+++ b/3411/CH3/EX3.3/Ex3_3.sce
@@ -0,0 +1,11 @@
+//Example 3_3
+clc();
+clear;
+//To calculate the wavelength
+d=12.5 //units in microns
+d=d*10^-6 //units in mts
+u0_ue=0.01
+lamda=4*d*u0_ue
+printf("The wavelength is %.7fmts",lamda)
+//In text book the answer is printed wrong as 4*10^-7mts
+//The correct answer is 5*10^-7 mts