how can I use fzero to this equation?

6 次查看(过去 30 天)
P(x)=polyfit(x,y,7)

回答(1 个)

Star Strider
Star Strider 2016-1-7
This is how I would do it:
x = -9:9; % Create Data
y = x.^3 - 2; % Create Data
p = polyfit(x,y,7); % Fit Polynomial
f = @(x,p) cos(sqrt(abs(polyval(p,x)))) - sin(x)/2; % Function
f_root = fzero(@(x) f(x,p), 1) % Find Root
  7 个评论
Star Strider
Star Strider 2016-1-7
My pleasure!
The most sincere expression of thanks here on MATLAB Answers is to Accept the Answer that most closely solves your problem.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Polynomials 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by