mathematical expression from string input

31 ビュー (過去 30 日間)
Md. Ashikur Rahman Any
Md. Ashikur Rahman Any 2021 年 4 月 17 日
コメント済み: Stephan 2021 年 4 月 19 日
I want to make a equation solver which will take any type of mathmatical equation as input .and return the roots.For that reason ,first the program need to read the equation.I want to input the equation in string format.then matlab will consider this as a function of x.
for example if i give input as
(sin(sqrt(x)+a) * e^sqrt(x)) / sqrt(x)
Matlab will read this as
and then i will plot the curve ,and the intersecting point with x axis is the solution of the equation.
How to do that?
Thanks in Advance

採用された回答

Stephan
Stephan 2021 年 4 月 17 日
編集済み: Stephan 2021 年 4 月 17 日
>> fun = str2sym("(sin(sqrt(x)+a) * e^sqrt(x)) / sqrt(x)")
fun =
(e^(x^(1/2))*sin(a + x^(1/2)))/x^(1/2)
>> pretty(fun)
sqrt(x)
e sin(a + sqrt(x))
-------------------------
sqrt(x)
  4 件のコメント
Md. Ashikur Rahman Any
Md. Ashikur Rahman Any 2021 年 4 月 18 日
The equation has multiple solution.But it only shows one.
How to show multiple solutions as output.
I know there are infinite number of solution.But if i want to get solution in a sfecific range ,how to get that??
Stephan
Stephan 2021 年 4 月 19 日
Make assumptions on x and solve then:
syms x a
fun = str2sym("(sin(sqrt(x)+a) * exp(sqrt(x))) / sqrt(x)")
fun = subs(fun, a, 1)
assume([x>25, x<30])
intersect = solve(fun==0)
fplot(fun,[25,30])
xline(double(intersect),'k--')
yline(0,'k--')

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by