Solution of one variable parametric equation
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Muhammad Imran
le 24 Oct 2016
Commenté : Muhammad Imran
le 24 Oct 2016
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
0 commentaires
Réponse acceptée
Torsten
le 24 Oct 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.
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!