matlab求解方程log(x)=tan(x),

问题描述:

matlab求解方程log(x)=tan(x),

画图即可。

syms x
f = log(x) - tan(x);
X=solve(f,'x');