Using solve to find intersection points

조회 수: 14 (최근 30일)
Matthew Lamanilao
Matthew Lamanilao 2021년 9월 22일
댓글: Star Strider 2021년 9월 22일
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일
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개)

카테고리

Help CenterFile Exchange에서 Calculus에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by