finding all roots of a trignometric equation

조회 수: 11 (최근 30일)
pooja sudha
pooja sudha 2020년 12월 30일
댓글: Ameer Hamza 2020년 12월 31일
Can we find all roots of a trignometric equation using matlab?
for e.g., tan(x)-x=0.

답변 (2개)

Ameer Hamza
Ameer Hamza 2020년 12월 30일
range of tan(x) is (-inf inf), so this equation has an infinite number of solutions. Also, the solutions to this equation cannot be represented analytically. There is no general way to find multiple solutions to such equations. One solution is to start the numerical solver with several starting points and choose unique values. For example
eq = @(x) tan(x)-x;
x_range = 0:0.1:20;
sols = ones(size(x_range));
for i = 1:numel(sols)
sols(i) = fsolve(eq, x_range(i));
end
sols = uniquetol(sols, 1e-2);
  댓글 수: 2
Walter Roberson
Walter Roberson 2020년 12월 30일
The solutions to tan(x)-x tend towards being close to 2*pi apart, so it is possible to generate reasonable starting points for as many points as desired until you start losing too much floating point precision.
However, you will never have enough memory to return them "all".
Ameer Hamza
Ameer Hamza 2020년 12월 31일
Yes, thats a good observation to give the initial points. The solutions are pi apart from each. Following will also give same result as one in the answer.
eq = @(x) tan(x)-x;
x_range = 0.1:pi:20;
sols = ones(size(x_range));
for i = 1:numel(sols)
sols(i) = fsolve(eq, x_range(i));
end

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


Image Analyst
Image Analyst 2020년 12월 30일
Well here's one way. Use fminbnd() to find out where the equation is closest to zero:
x = linspace(-1, 1, 1000);
y = tan(x);
plot(x, x, 'b-', 'LineWidth', 2);
hold on;
plot(x, y, 'r-', 'LineWidth', 2);
grid on;
axis equal
% Use fminbnd() to find where d = 0, which is where tan(x) = x.
xIntersection = fminbnd(@myFunc, -1.5,1.5)
% Put a line there
xline(xIntersection, 'Color', 'g', 'LineWidth', 3);
caption = sprintf('xIntersection = %f', xIntersection);
title(caption, 'FontSize', 20)
function d = myFunc(x)
d = abs(tan(x) - x);
end
You get
xIntersection =
-1.66533453693773e-16

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by