i am new to matlab. I am trying to solve implicit equation in matlab using fsolve and and fzero command but getting error. Please guide
1 view (last 30 days)
Show older comments
syms x, L % x and L both are variables
detr=2*x*cos(L*x) - x - x*cos(L*x)^2 - x*sin(L*x)^2 + L*x^2*sin(L*x)
sol1=fzero(detr, 0)
sol2 = fsolve(detr,0)
Error: If FUN is a MATLAB object, it must have an feval method.
0 Comments
Answers (1)
Walter Roberson
on 1 May 2016
You cannot use fzero or fsolve for symbolic expressions. You need to use either solve or vpasolve.
You only have one equation in two variables, so there is no unique solution. There are solutions at x = 0, L = 0, x*L = 2 * Pi * (Any Integer), and x*L = RootOf(sin(Z)*Z^2+4*sin(Z)-4*Z, z) . The 2 * Pi * (Any Integer) has an infinite number of solutions, and the RootOf(sin(Z)*Z^2+4*sin(Z)-4*Z, z) has an infinite number of solutions
0 Comments
See Also
Categories
Find more on Symbolic Math Toolbox 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!