Using solve function to find the roots

syms x
y = 2*x*exp(-x)-sin(x)==0;
d=solve(y,x)
It gives the "zero" as the only value that makes the y zero. But the roots should be 0.8030 and 2.7923 (I have looked from ezplot). Why can't I find the roots with the solve function?

 採用された回答

Walter Roberson
Walter Roberson 2016 年 1 月 18 日

2 投票

solve() can only find all solutions for polynomials. For non-linear functions, it will give a warning and find one numeric solution.
Since you need to switch to numeric solutions anyhow, use vpasolve() with initial guesses to select the range to find the solution over. vpasolve() will only find one solution at a time, but it will allow you to select the range to look in.

3 件のコメント

fert
fert 2016 年 1 月 18 日
It is not relevant with the former question, but do you think this code is right for comparing a function and its derivative:
clear all;clc
syms x
y = (log(1+x)+x.^2/2)/(1+x).^2
k=diff(y,x)
figure
ezplot(k)
hold on
ezplot(y)
Walter Roberson
Walter Roberson 2016 年 1 月 18 日
Looks plausible, except that I would use
y = (log(1+x)+x.^2/2)./(1+x).^2
fert
fert 2016 年 1 月 18 日
Thank you very much indeed.

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

その他の回答 (0 件)

カテゴリ

タグ

質問済み:

2016 年 1 月 18 日

コメント済み:

2016 年 1 月 18 日

Community Treasure Hunt

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

Start Hunting!

Translated by