summaryrefslogtreecommitdiff
path: root/52/CH5/EX5.9/Example5_9.sce
diff options
context:
space:
mode:
Diffstat (limited to '52/CH5/EX5.9/Example5_9.sce')
-rwxr-xr-x52/CH5/EX5.9/Example5_9.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/52/CH5/EX5.9/Example5_9.sce b/52/CH5/EX5.9/Example5_9.sce
new file mode 100755
index 000000000..76cd1d0f8
--- /dev/null
+++ b/52/CH5/EX5.9/Example5_9.sce
@@ -0,0 +1,11 @@
+//Example 5.9
+//To Design a Chebyshev Filter with Given Specifications
+clear;
+clc ;
+close ;
+ap=2.5;//db
+as=30;//db
+op=20;//rad/sec
+os=50;//rad/sec
+N=acosh(sqrt((10^(0.1*as)-1)/(10^(0.1*ap)-1)))/acosh(os/op);
+disp(ceil(N),'Order of the filter, N ='); \ No newline at end of file