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