diff options
Diffstat (limited to '2498/CH4/EX4.6')
-rwxr-xr-x | 2498/CH4/EX4.6/ex4_6.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2498/CH4/EX4.6/ex4_6.sce b/2498/CH4/EX4.6/ex4_6.sce new file mode 100755 index 000000000..7ca7fc571 --- /dev/null +++ b/2498/CH4/EX4.6/ex4_6.sce @@ -0,0 +1,14 @@ +// Exa 4.6
+clc;
+clear;
+close;
+format('v',6)
+// Given data
+Alpha = 0.975;
+Beta = Alpha/(1-Alpha);
+// The value of beta,
+disp(Beta,"The value of Beta is");
+Beta = 200;
+// The value of alpha,
+Alpha = Beta/(1+Beta);
+disp(Alpha,"The value of Alpha is");
|