Sha256: cb80a375313f5d8fece03d9a75461c2ce7ce5d80a6572a4295ad68b3ffd282d1

Contents?: true

Size: 175 Bytes

Versions: 3

Compression:

Stored size: 175 Bytes

Contents

module Math

  # Cosecans hyperbolicus of `x`.
  def self.csch(x)
    1.0 / sinh(x)
  end

  # Cosecans hyperbolicus of `x`.
  def self.cosech(x)
    1.0 / sinh(x)
  end

end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
facets-glimmer-3.2.0 lib/standard/facets/math/csch.rb
facets-3.1.0 lib/standard/facets/math/csch.rb
facets-3.0.0 lib/standard/facets/math/csch.rb