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

Methods

at   new  

Public Class methods

[Source]

     # File graph.rb, line 273
273:   def initialize(n = R.prec)
274:     @precMem = R.prec
275:     @precLoc = n
276:   end

Public Instance methods

[Source]

     # File graph.rb, line 277
277:   def at(x)
278:     R.prec = @precLoc
279:     y = x.exp
280:     R.prec = @precMem; y
281:   end

[Validate]