% SINH SINH Hyperbolic Sine Function % % Usage % % Computes the hyperbolic sine of the argument. % The syntax for its use is % % y = sinh(x) % function y = sinh(x) if (nargin == 0 || ~isnumeric(x)) error('sinh expects a numeric input'); end y = (exp(x)-exp(-x))/2;