필터 지우기
필터 지우기

How do I find all the zeros of a function?

조회 수: 51 (최근 30일)
MathWorks Support Team
MathWorks Support Team 2009년 11월 13일
댓글: Walter Roberson 2022년 4월 10일
The FZERO function only finds a single zero near a specified point. How can I get different zeros over a wider range?

채택된 답변

MathWorks Support Team
MathWorks Support Team 2013년 10월 18일
The example below describes one way to find zeros between 0 and 2*pi.
lb = 0;             % Set a lower bound for the function.
ub = 2*pi;          % Set an upper bound for the function.
x = NaN*ones(100,1);             % Initializes x.
starting_points=linspace(0,2*pi,100);
for i=1:100
        % Look for the zeros in the function's current window.
        x(i)=fzero(@(x)sin(10*x), starting_points(i));
end
x_unique=x(diff(x)>1e-12)
%compare to theory values
transpose(((0:19)*pi)/10)-x_unique
Changing the step value of the loop (0.01) to a larger value will result in faster execution, but less accuracy, and vice versa when the specified step value is smaller.
The tolerance for duplicates, in this example 1e-12, should be specified depending on the problem at hand, an inappropriate setting for a certain problem might result in some of the zeros not being found.
Alternately, you can use the SOLVE function from the Symbolic Math Toolbox. 
  댓글 수: 2
Walter Roberson
Walter Roberson 2015년 8월 9일
Note: solve() from the Symbolic Math Toolbox will only return all zeros for polynomial functions, not for nonlinear functions.
Walter Roberson
Walter Roberson 2022년 4월 10일
Time = 2:.1:4;
Dirac3 = zeros(size(Time));
Dirac3(Time==3) = 1;
stem(Time, Dirac3)

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

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

제품

Community Treasure Hunt

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

Start Hunting!

Translated by