summaryrefslogtreecommitdiff
path: root/1883/CH2/EX2.4.3/Example2_10.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1883/CH2/EX2.4.3/Example2_10.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1883/CH2/EX2.4.3/Example2_10.sce')
-rwxr-xr-x1883/CH2/EX2.4.3/Example2_10.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/1883/CH2/EX2.4.3/Example2_10.sce b/1883/CH2/EX2.4.3/Example2_10.sce
new file mode 100755
index 000000000..4310ced05
--- /dev/null
+++ b/1883/CH2/EX2.4.3/Example2_10.sce
@@ -0,0 +1,13 @@
+//Chapter-2,Example2_4_3,pg 2-25
+
+//as 3rd order line of wavelength lam is coincide with 4th order wavelength 4992 A.
+
+m_1=3 //3rd order
+
+m_2=4 //for 4th order
+
+wavelength_2=4992 //for 4th order
+
+wavelength_1=m_2*wavelength_2/m_1
+
+printf('\nwavelength of light is = %.0f A.',wavelength_1)