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.

[moved] Solution of Complex Exponential Equation

Status
Not open for further replies.

vijender13

Newbie level 3
Joined
Nov 4, 2015
Messages
3
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
23
Hi all,
I am trying to find out two unknowns from two equation. The equation are given below

eqn1 = exp((t0-tm)*(k3+k4)) -1 == (exp(-k4*(tr-t0))-1) / (exp(-tr)+exp(-t0));
eqn2 = exp((tr-tm)*(k3+k4)) -1 == (exp(k4*(tr-t0))-1) / (exp(-tr)+exp(-t0));

I want to calculate k3 and k4 in terms of to,tm,tr. I have tried this using 'solve' command in matlab but it gives me a empty matrix.

code:

syms k3(t0,tm,tr) k4(t0,tm,tr)
solve(eqn1 eq2)

Any idea how to get K3 and K4 from these equation.


Thanks
 

Hi,

I can't solve it.

Did you consider to use Laplace transform?
With this you can get rid of thone exp functions.

Klaus
 

Hi Klaus,

Thanks for your reply.

I don't understand why Laplace is helpful here. If I do laplace transform then its too complicated.

Vijender
 

Hi,

As far as I know the laplace transform of an exp will give a "multiply"...
This easier to solve.

But I may be wrong.... it's so many years ago..

Klaus
 

What are the values of t0,tm,tr you want to solve for ?
However "solve" is for system of linear equation. You have non-linear equation, so you have to use "fsolve"
 
Last edited:

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top