help using fzero to find the intersection

13 ビュー (過去 30 日間)
Ziad Badreldeen
Ziad Badreldeen 2020 年 5 月 29 日
回答済み: Star Strider 2020 年 5 月 29 日
i basically want to use fzero in order to find the coordinates of intersection between 2 graphs plotted together on the same figure can someone please explain how this is carried out

回答 (2 件)

KSSV
KSSV 2020 年 5 月 29 日
  2 件のコメント
Ziad Badreldeen
Ziad Badreldeen 2020 年 5 月 29 日
the question requires we use the fzero function for the problem
KSSV
KSSV 2020 年 5 月 29 日
so attach your data..to find out whether fzero helps.

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


Star Strider
Star Strider 2020 年 5 月 29 日
At the intersections, the difference between the functions is 0, and since fzero is a root-finding algorithm, choose and appropriate starting poiint and use it to find the intersections:
f = @(x) x.^2 - 2;
g = @(x) sin(2*pi*x/10);
for k = 1:2
xint(k) = fzero(@(x)f(x)-g(x), 5*(-1)^k); % Calculate ‘x’ At The Intersections
end
x = linspace(-2, 2);
figure
plot(x, f(x), x, g(x))
hold on
plot(xint, f(xint), 'gp') % Choose Either Function To Plot The Intersections
hold off
grid
Also, see the documentation on Anonymous Functions to understand how this code works.

カテゴリ

Help Center および File ExchangeOptimization についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by