用MATLAB如何解指数方程
问题描述:
用MATLAB如何解指数方程
matlab中用solve解 下面的方程解不了,solve('x^0.65-0.1875*x^-0.35+1.991-1.991*x=0.8125','x')
答
你方程写错了,应该是
solve('x^0.65-0.1875*x^(-0.35)+1.991-1.991*x=0.8125','x')