diff options
Diffstat (limited to '3753/CH1/EX1.14/Ex1_14.sce')
-rw-r--r-- | 3753/CH1/EX1.14/Ex1_14.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3753/CH1/EX1.14/Ex1_14.sce b/3753/CH1/EX1.14/Ex1_14.sce new file mode 100644 index 000000000..ecdef4c08 --- /dev/null +++ b/3753/CH1/EX1.14/Ex1_14.sce @@ -0,0 +1,14 @@ +//Example number 1.14, Page number 1.39 + +clc;clear;close + + +//Variable declaration +theta=5*10**-3/2// unitless +lamda=5*10**-7 // in m + +//Calculation +a=(lamda)/theta // in m + +printf("a=%0.e m",(a)) +printf("\n a=%.1f mm",a*10**3) |