MATLAB: Does it give the error: Undefined function or variable ‘arctanh’. Is there another way to use arctanh for the hyperbolic function

arctan hyperbolic syntax

function calc_vel = freefalljumper(in_mass, in_time, in_drag)
grav = 9.8; b = 0.425; init_vel = 0; calc_vel = sqrt(in_mass grav/(b * in_drag)) *tanh(in_time * sqrt((b * in_drag)*grav/in_mass)) + …, arctanh(init_vel sqrt((b * in_drag)/ in_mass * grav));

Best Answer

Try :
atanh