Class AppMath::ArcCot
In: graph.rb
Parent: Object

Methods

at   new  

Public Class methods

[Source]

     # File graph.rb, line 321
321:   def initialize(n = R.prec)
322:     @precMem = R.prec
323:     @precLoc = n
324:   end

Public Instance methods

[Source]

     # File graph.rb, line 325
325:   def at(x)
326:     R.prec = @precLoc
327:     y = x.acot
328:     R.prec = @precMem; y
329:   end

[Validate]