Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

How to convert transfer function into LC ladder ?

Status
Not open for further replies.

zmliu

Member level 5
Member level 5
Joined
Mar 21, 2004
Messages
89
Helped
8
Reputation
16
Reaction score
4
Trophy points
1,288
Activity points
620
LC Ladder conversion

Please tell me how to convert transfer function into LC ladder quickly except the methods in Design of Analog Filters? Hand calculation or computer-based software?
Thanks.
 

Re: LC Ladder conversion

zmliu said:
Please tell me how to convert transfer function into LC ladder quickly except the methods in Design of Analog Filters? Hand calculation or computer-based software?
Thanks.

Check out this to see if it helps you.
**broken link removed**

Also this Matlab program, that does T(s) to LC ladder conversion:

<P13_4_a.m>
clear;
D = [1 4.4939592 10.0978347 14.5917939 14.5917939 10.0978347 4.4939592 1];
S7 = [1 0 0 0 0 0 0 0];
Num = D + S7;
Den = D - S7;
%Num = [1 0 6 0 8]
%Den = [1 0 4 0 3]
N = length(Num);

for i = 1:N-1
Decomp(i) = Num(i)/Den(i+1);
for j = i:N-1
ReNum(j) = Num(j) - Decomp(i)*Den(j+1);
end
ReNum(N) = Num(N);
Num = Den; Den = ReNum;
end
disp('The continual decomposition coefficients for ''s'' are:');
for i = 1:N-1
fprintf('%6.5f\n', Decomp(i));
end
fprintf('The last resistive term is %6.5f / %6.5f \n', Num(N), Den(N));
 

Re: LC Ladder conversion

I need some LC ladder tutorial. Particularly how to synthesize a LPF given a transfer function with poles and zeros.

Thanks
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top