diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2708/CH2/EX2.15 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2708/CH2/EX2.15')
-rwxr-xr-x | 2708/CH2/EX2.15/ex_2_15.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/2708/CH2/EX2.15/ex_2_15.sce b/2708/CH2/EX2.15/ex_2_15.sce new file mode 100755 index 000000000..e09a3f468 --- /dev/null +++ b/2708/CH2/EX2.15/ex_2_15.sce @@ -0,0 +1,9 @@ +//Example 2.14 //Radius of half period element
+clc;
+clear;
+//given data
+f=50;//focal length of convex lens in cm
+w=5D-5;// wavelength used in cm
+n=1;// order of principal maxima
+r=sqrt(n*f*w);// radius of half period element
+disp(r,"Radius of half period element in cm")
|