matlab求解方程log(x)=tan(x),
问题描述:
matlab求解方程log(x)=tan(x),
答
画图即可。
答
syms x
f = log(x) - tan(x);
X=solve(f,'x');