summaryrefslogtreecommitdiff
path: root/165/CH5/EX5.3/ex5_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '165/CH5/EX5.3/ex5_3.sce')
-rw-r--r--165/CH5/EX5.3/ex5_3.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/165/CH5/EX5.3/ex5_3.sce b/165/CH5/EX5.3/ex5_3.sce
new file mode 100644
index 000000000..5cfb2e926
--- /dev/null
+++ b/165/CH5/EX5.3/ex5_3.sce
@@ -0,0 +1,9 @@
+//Example 5.3
+clc;
+
+R=100*10^3; //Given value of resistence
+C=2*10^-6; //Given value of Capacitor
+Vin=2; //Input Voltage
+t=2; //Given time
+Vo=Vin*t/(R*C); //Output Voltage after time t
+disp(Vo,'Output Voltage') \ No newline at end of file