Using solve command, to solve user defined function

18 ビュー (過去 30 日間)
Roohullah Ansari
Roohullah Ansari 2022 年 2 月 17 日
回答済み: Prateek Rai 2022 年 2 月 21 日
Suppose I write a function f(a,b,c,d).
I want to solve it using solve as
solve(b=1/f(a,b,c,d))
but whenever i used the above it gives error, showing use symb variable.
  1 件のコメント
Torsten
Torsten 2022 年 2 月 17 日
You defined a,b,c and d as symbolic ? You want to solve b=1/f(a,b,c,d) for b ?
Then
bsol = solve(b*f(a,b,c,d)==1,b)
should work.

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

回答 (1 件)

Prateek Rai
Prateek Rai 2022 年 2 月 21 日
Hi,
You can use "syms" to create symbolic function with four arguments:
syms f(a,b,c,d)
here, f is abstract symbolic function. It does not have symbolic expressions assigned to it.
Then, specify the following formula for f.
% formula for f
After that, you can use "solve" function:
solve(b==1/f(a,b,c,d))
Please refer to syms MathWorks documentation page to find more on creating symbolic functions. You can also refer to solve MathWorks documentation page to learn more about Equations and systems solver.

カテゴリ

Help Center および File ExchangeSymbolic Math Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by