Find zeros in interval

7 Ansichten (letzte 30 Tage)
Harel Harel Shattenstein
Harel Harel Shattenstein am 6 Jul. 2018
Beantwortet: Torsten am 6 Jul. 2018
I try to find a solution for
Try 1
syms x t
f=@(x)int(exp(-(t./x).^2),t,-1,1)-1.5;
fzero(f,[0.5,2])
Try 2
solve(int(exp(-(t./x).^2),t,-1,1)==1.5,x)
The first try does not work, the second work but I can enter an inverval How can I solve an equation given an interval?

Akzeptierte Antwort

Torsten
Torsten am 6 Jul. 2018
f=@(x)integral(@(t)exp(-(t/x).^2),-1,1)-1.5;
sol=fzero(f,[0.5,2])

Weitere Antworten (1)

Walter Roberson
Walter Roberson am 6 Jul. 2018
vpasolve() permits you to enter ranges to search over.

Kategorien

Mehr zu Symbolic Math Toolbox finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by