Solution of one variable parametric equation
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Muhammad Imran
il 24 Ott 2016
Commentato: Muhammad Imran
il 24 Ott 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 Commenti
Risposta accettata
Torsten
il 24 Ott 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.
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!