diff options
Diffstat (limited to '3537/CH7/EX7.16/Ex7_16.sce')
-rw-r--r-- | 3537/CH7/EX7.16/Ex7_16.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/3537/CH7/EX7.16/Ex7_16.sce b/3537/CH7/EX7.16/Ex7_16.sce new file mode 100644 index 000000000..1e9b14747 --- /dev/null +++ b/3537/CH7/EX7.16/Ex7_16.sce @@ -0,0 +1,8 @@ +//Example 7_16
+clc();
+clear;
+//To calculate the angle of acceptance
+n1=1.563
+n2=1.498
+theta=asin(sqrt(n1^2-n2^2))*180/%pi
+printf("The acceptance angle is %.2f degrees",theta )
|