% ACOTH ACOTH Inverse Hyperbolic Cotangent Function % % Usage % % Computes the inverse hyperbolic cotangent of its argument. The general % syntax for its use is % % y = acoth(x) % % where x is an n-dimensional array of numerical type. function y = acoth(x) if (nargin == 0 || ~isnumeric(x)) error('acoth expects a single, numeric input'); end y = atanh(1.f./x);