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

Methods

at   new  

Public Class methods

[Source]

     # File graph.rb, line 345
345:   def initialize(n = R.prec)
346:     @precMem = R.prec
347:     @precLoc = n
348:   end

Public Instance methods

[Source]

     # File graph.rb, line 349
349:   def at(x)
350:     R.prec = @precLoc
351:     y = x.erfc
352:     R.prec = @precMem; y
353:   end

[Validate]