summaryrefslogtreecommitdiff
path: root/3513/CH9/EX9.1/Ex9_1.sce
blob: 81823dc4e1b79cb2eb6413b856a200a21197badf (plain)
1
2
3
4
5
6
7
8
9
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);