How can I solve this equation in which variable is in power
Ältere Kommentare anzeigen
I tried this but getting wrong solution
syms a b c d
eqn1 = 2.1544 == a*(5.95^b) + c*(5.95^d);
eqn2 = 1.71 == a*(6.72^b) + c*(6.72^d);
eqn3 = 1.99 == a*(6.35^b) + c*(6.35^d);
eqn4 = 1.59 == a*(6.98^b) + c*(6.98^d);
eqns = [eqn1 eqn2 eqn3 eqn4];
vars = [a b c d];
R = vpasolve(eqns,vars);
1 Kommentar
AJMIT KUMAR
am 18 Jan. 2021
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Choose a Solver finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!