I work on DSP code, where some equations are of form:
tanh(x) = a*x + b (tanh or other hyperbolic functions)
Currently I use Newton-Raphson method. Is there a better/faster method of finding solution for this case?
I can use values in precomputed array.. but only one dimensional.