Solving 2 eq in matlab

9 visualizaciones (últimos 30 días)
AHMED MOHAISN
AHMED MOHAISN el 4 de Nov. de 2020
Comentada: Ameer Hamza el 4 de Nov. de 2020
Can anybody tell me how I can find solutions for a and b in these eq using matlab?
syms a b
t1 = 0.1
t2 = 0.2
b = 2 + a*exp((-(t1-1))/0.3)
a = 4 + (b - 1)*exp(-t2/0.667)

Respuestas (1)

Walter Roberson
Walter Roberson el 4 de Nov. de 2020
sola = solve(a)
solb = subs(b, a, sola)
  1 comentario
Ameer Hamza
Ameer Hamza el 4 de Nov. de 2020
I think this will not give correct solution. It should be like this
syms a b
t1 = 0.1;
t2 = 0.2;
eq1 = b == 2 + a*exp((-(t1-1))/0.3);
eq2 = a == 4 + (b - 1)*exp(-t2/0.667);
sol = solve([eq1 eq2])
sola = sol.a;
solb = sol.b;

Iniciar sesión para comentar.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by