how to solve tan(x)=x
7 views (last 30 days)
Show older comments
May I ask how to solve tan(x)=x in matlab?
0 Comments
Accepted Answer
More Answers (1)
Arun Nyamagoudar
on 21 Feb 2020
Use the below code with vpasolve,
syms x
for n = 1:100
x1 = (2*n-1)*pi/2;
x2 = (2*n+1)*pi/2;
v(n) = double(vpasolve(tan(x)-x == 0,x,[x1 x2]));
end
0 Comments
See Also
Categories
Find more on Symbolic Math Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!