module Functions
    class Coth < CMathFunction
      def initialize
        super("coth", Proc.new {|arg| 1 / CMath::tanh(arg)})
      end