diff options
Diffstat (limited to '863/CH2/EX2.6/Ex2_6.sce')
-rw-r--r-- | 863/CH2/EX2.6/Ex2_6.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/863/CH2/EX2.6/Ex2_6.sce b/863/CH2/EX2.6/Ex2_6.sce new file mode 100644 index 000000000..f5895eb04 --- /dev/null +++ b/863/CH2/EX2.6/Ex2_6.sce @@ -0,0 +1,11 @@ +//Caption:Calculate minimum square wave frequency
+//Ex2.6
+clc;
+clear;
+close;
+C=1//Coupling capacitor(in micro farad)
+R=1//Input resistance(in Mega ohm)
+t=0.01//Tilt
+PW=t*R*C
+f=1/(2*PW)
+disp(f,'Frequency required(in hertz)=')
\ No newline at end of file |