how to solve two equations in one variable

5 ビュー (過去 30 日間)
ahmed mohamed
ahmed mohamed 2020 年 4 月 6 日
コメント済み: David Hill 2020 年 4 月 6 日
How can i calculate the value of the variable (X) from these two equations, if i know the value of J and D

採用された回答

David Hill
David Hill 2020 年 4 月 6 日
syms x;
J=
D=
eq=exp(-x)-52*x^3==J/D;%combine the equations yourself
vpasolve(eq,x);
  1 件のコメント
David Hill
David Hill 2020 年 4 月 6 日
You did not use the correct equation.
eq=exp(-x)-52*x^3==J/D;

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeEquation Solving についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by