I need some help for the below equation, is there any function which could help me to solve for b variable in MATLAB & Simulink? Otherwise, which numerical methods would you prefer?
$$\frac{a-b}{2 R}=2 I \sinh(\frac{a+b}{2 V}) $$
(assume that $a$, $R$, $I$ and $V$ is known)
Thanks.
Use fzero in matlab. Couple this with writing your function as $$ f(b) = 2I\sinh\left(\frac{a+b}{2V}\right)-\frac{a-b}{2R} $$ and use the example in the link.