vijender13
Newbie level 3
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
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