how to solve two equations in one variable

How can i calculate the value of the variable (X) from these two equations, if i know the value of J and D

 Accepted Answer

syms x;
J=
D=
eq=exp(-x)-52*x^3==J/D;%combine the equations yourself
vpasolve(eq,x);

More Answers (0)

Categories

Community Treasure Hunt

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

Start Hunting!