Using solve to find intersection points

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)?

 採用された回答

Star Strider
Star Strider 2021 年 9 月 22 日

0 投票

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 件のコメント

Matthew Lamanilao
Matthew Lamanilao 2021 年 9 月 22 日
Thank you!
Star Strider
Star Strider 2021 年 9 月 22 日
As always, my pleasure!
.

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

その他の回答 (0 件)

カテゴリ

Community Treasure Hunt

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

Start Hunting!

Translated by