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.

Define a function - can anyone help me?

Status
Not open for further replies.

Vauxdvihl

Member level 5
Joined
Dec 31, 1999
Messages
94
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,286
Activity points
611
Define a function

Hi friends,

can somebody help to define the following function in the time domain (with A*exp(-_*_)+b*exp(-_*_)...........etc. ?

The function called:

1+s*0.5133154
f(s)=----------------------------------------------------
s^2*0.0010266308+s*0.30998924+4.4


Thank you very much for your help !!

Regards
 

using matlab (if you do not want to do it by hand, out of laziness):

a=[0.5133154 1];
b=[0.0010266308 0.30998924 4.4];
[r,p,k]=residue(a,b)

yileds:
r=[523.8611 -23.8611]
p=[-287.0156 -14.9325]
k=[]

meaning that:
your transfer function could be expanded into partial fraction expansion as:
r(1)/(s-p(1)) + r(2)/(s-p(2)) + K
=523.8611/(s+287.0156 ) - 23.8611/(s+14.9325)

now, converting back to time domain:
=r(1)*exp(-j*p(1)) + r(2)*exp(-j*p(2))

you now the rest :)

cheers...
 

i meant: exp(-j*p(1)*t) ...etc (note the t I missed in the above work)

I guess you now.
 

Hi,
Post such questions may be in Google groups or any such place or in beginners sections.
brmadhukar
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top