how i can know the roots

1 回表示 (過去 30 日間)
yasmeen hadadd
yasmeen hadadd 2016 年 8 月 24 日
コメント済み: yasmeen hadadd 2016 年 8 月 24 日
Hello;
i have a curve without his function , how i can know the roots( intersection with x-axis , y=0), using for loop thanks

採用された回答

KSSV
KSSV 2016 年 8 月 24 日
Multiple ways are there..
1. Fit a polynomial for the data and get the intersection points with x and y axes.
2. Use interpolation.
Eg:
clc; clear all ;
c = @(x) x.^3+x.^2-x-1 ;
N = 100 ;
x = linspace(-4,4,1000) ;
y = c(x) ;
plot(x,y) ; grid on ; hold on
% Get intersection with x-axes (y = 0)
x0 = interp1(y,x,0) ;
plot(x0,0,'*r')
% Get intersection with y-axes (x = 0)
y0 = interp1(x,y,0) ;
plot(0,y0,'*b')
In the above code, I have used inbuilt interpolation...you may write your code using for loops...
  1 件のコメント
yasmeen hadadd
yasmeen hadadd 2016 年 8 月 24 日
thanks

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by