diff options
Diffstat (limited to '863/CH1/EX1.7/Ex1_7.sce')
-rw-r--r-- | 863/CH1/EX1.7/Ex1_7.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/863/CH1/EX1.7/Ex1_7.sce b/863/CH1/EX1.7/Ex1_7.sce new file mode 100644 index 000000000..418ae6520 --- /dev/null +++ b/863/CH1/EX1.7/Ex1_7.sce @@ -0,0 +1,9 @@ +//Caption:Calculate lowest input frequency
+//Exa:1.7
+clc;
+clear;
+close;
+fl=10//Lower cutoff frequency(in hertz)
+t=0.02//Tilt on output waveform
+f=%pi*fl/(t*1000)
+disp(f,'Lowest input frequency(in Khz)=')
|