solve equation in Matlab -
solve equation in Matlab -
i trying solve equation: 1000^x = 0.5* 512^x + 0.5* 1728^x wonder why next code not work.
syms x eqn = (power(1000,x) == 0.5* power(512,x) + 0.5* power(1728,x)); solve(eqn, x)
matlab gives me x=0 solution, however, expecting 1/3 one. there way can constrain answer.
matlab equation
Comments
Post a Comment