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

Methods

at   new  

Public Class methods

[Source]

     # File graph.rb, line 333
333:   def initialize(n = R.prec)
334:     @precMem = R.prec
335:     @precLoc = n
336:   end

Public Instance methods

[Source]

     # File graph.rb, line 337
337:   def at(x)
338:     R.prec = @precLoc
339:     y = x.erf
340:     R.prec = @precMem; y
341:   end

[Validate]