diff options
Diffstat (limited to '3648/CH17/EX17.16/Ex17_16.sce')
-rw-r--r-- | 3648/CH17/EX17.16/Ex17_16.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3648/CH17/EX17.16/Ex17_16.sce b/3648/CH17/EX17.16/Ex17_16.sce new file mode 100644 index 000000000..93c5f7005 --- /dev/null +++ b/3648/CH17/EX17.16/Ex17_16.sce @@ -0,0 +1,9 @@ +//Example 17_16
+clc();
+clear;
+//To findout how large a a resistance must the recording device must have
+r1=10000 //Units in Ohms
+percent=1 //Units in Percentage
+vo=1/(r1*(percent*100)) //Units In terms of Ro
+Ro=1/vo //Units in Ohms
+printf("The resistance of the recording device is=%d Ohms",Ro)
|