I have a function A=B*C+D, here B,C,D are all different functions (say it Equation 1)
For B, the equation is B*tanh(B)=E*F (say it Equation 2)
Now i want to extract B from this equation and use it in Equation 1. For me the problem is B is not defined explicity, is there any way to extract B and use it in equation 1.

 Akzeptierte Antwort

David Hill
David Hill am 11 Feb. 2021

0 Stimmen

function B=eqnB(E,F)
fun=@(b)b*tanh(b)-E*F;
B=fsolve(fun,1);
end

3 Kommentare

abhijeet singh
abhijeet singh am 11 Feb. 2021
Thanks for the ready reply @David Hill. In the first line you mentioned eqnB, is it just name of function of any comatlab command?
David Hill
David Hill am 11 Feb. 2021
You have to name your function something. What do you want to name it?
abhijeet singh
abhijeet singh am 11 Feb. 2021
ok i got it.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Mathematics finden Sie in Hilfe-Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by