how to solve tan(x)=x
Show older comments
May I ask how to solve tan(x)=x in matlab?
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
Categories
Find more on Graphics Objects 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!