Borrar filtros
Borrar filtros

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

2 visualizaciones (últimos 30 días)
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.

Respuestas (1)

Walter Roberson
Walter Roberson el 1 de Mayo de 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

Categorías

Más información sobre Solver Outputs and Iterative Display en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by