Using solve to find intersection points

14 Ansichten (letzte 30 Tage)
Matthew Lamanilao
Matthew Lamanilao am 22 Sep. 2021
Kommentiert: Star Strider am 22 Sep. 2021
Given two functions, f(x) = exp(-x^2) and g(x) = 0.8, how do I use Matlab's solve function to find all intersection points of f(x) and g(x)?

Akzeptierte Antwort

Star Strider
Star Strider am 22 Sep. 2021
It’s as simple as it looks —
syms x
f(x) = exp(-x^2)
f(x) = 
g(x) = sym(0.8)
g(x) = 
xi = solve(f == g)
xi = 
xi_vpa = vpa(xi)
xi_vpa = 
.
  2 Kommentare
Matthew Lamanilao
Matthew Lamanilao am 22 Sep. 2021
Thank you!
Star Strider
Star Strider am 22 Sep. 2021
As always, my pleasure!
.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by