diff options
Diffstat (limited to '3513/CH9/EX9.1/ch9_1.sce')
-rw-r--r-- | 3513/CH9/EX9.1/ch9_1.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3513/CH9/EX9.1/ch9_1.sce b/3513/CH9/EX9.1/ch9_1.sce new file mode 100644 index 000000000..81823dc4e --- /dev/null +++ b/3513/CH9/EX9.1/ch9_1.sce @@ -0,0 +1,10 @@ +//Calculate the reliability of system RA = 0.8
+//page no 218
+clear
+clc;
+RA = 0.8;
+RB = 0.7;
+RC = 0.9;
+RAB = 1-((1-RA)*(1-RB));
+RS=RAB*RC;
+mprintf("\RS = %.2f \n",RS);
|