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

Methods

at   new  

Public Class methods

[Source]

     # File graph.rb, line 285
285:   def initialize(n = R.prec)
286:     @precMem = R.prec
287:     @precLoc = n
288:   end

Public Instance methods

[Source]

     # File graph.rb, line 289
289:   def at(x)
290:     R.prec = @precLoc
291:     y = x.log
292:     R.prec = @precMem; y
293:   end

[Validate]