フィルターのクリア

Solving a formula in Matlab

2 ビュー (過去 30 日間)
Belal Abboushi
Belal Abboushi 2015 年 3 月 6 日
コメント済み: Roger Stafford 2015 年 3 月 6 日
Hello everyone,
In the following formula : X= 2y + 10 log(1+ E/S)
I want the user to input X, y, and S. Is there anyway i can get matlab to give me the value of E without having to rewrite the formula?
Thank you so much!
  2 件のコメント
Torsten
Torsten 2015 年 3 月 6 日
Maybe by using MATLAB's "solve" ?
Best wishes
Torsten.
Roger Stafford
Roger Stafford 2015 年 3 月 6 日
It seems a shame not to use such a simple inverse formula as:
E = S*(exp((X-2*y)/10)-1);
assuming your log is the natural logarithm. Otherwise:
E = S*(10^((X-2*y)/10)-1);

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

採用された回答

Giorgos Papakonstantinou
Giorgos Papakonstantinou 2015 年 3 月 6 日
編集済み: Giorgos Papakonstantinou 2015 年 3 月 6 日
x = input('Enter the value of x: '); % request user input
y = input('Enter the value of y: ');
S = input('Enter the value of S: ');
f = @(E) 2.*y + 10*log(1+ E./S) - x; % create an anonymous function
[Eval, fval]= fsolve(f, 1); % solve your equation
or you can also:
syms E
f = 2.*y + 10*log(1+ E./S) == x;
solve(f, E)
If log refers to the base of 10 rewrite f by replacing log with log10.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeExponents and Logarithms についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by