Solution of one variable parametric equation

Dear colleagues,
I have an equation of the form x=c.tanh(a.x), where a and c are constants. I may ask for your kind suggestions to find the solution of equation.
Best regards, Imran

 Respuesta aceptada

Torsten
Torsten el 24 de Oct. de 2016
a=...;
c=...;
f=@(x)(x-c*tanh(a*x));
sol=fzero(f,1);
sol
By the way: x=0 is a solution.
Best wishes
Torsten.

1 comentario

Muhammad Imran
Muhammad Imran el 24 de Oct. de 2016
Dear Torsten,
Thank you for your quick response!
I achieve the roots of equation near to what I expect. Here, I presented very simple form of equation, the actual equation is rather quite complex.
Best regards, Imran

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Mathematics en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 24 de Oct. de 2016

Comentada:

el 24 de Oct. de 2016

Community Treasure Hunt

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

Start Hunting!

Translated by