in reply to Passing a BigFloat number through a subroutine

So it looks like the rounding if occurring when the number is put in an array. Is there a way to have an array reference point to a BigFloat number?
  • Comment on Re: Passing a BigFloat number through a subroutine

Replies are listed 'Best First'.
Re^2: Passing a BigFloat number through a subroutine
by Your Mother (Archbishop) on Jul 17, 2016 at 22:36 UTC

    This is impossible. Putting a scalar or an object into an array changes nothing about the scalar or object. I'm guessing you are probably operating on the numbers somewhere and accidentally converting them. You need to provide code that reproduces the problem to be certain of a correct answer though.