Hello... I'm working on an optimization algorithm that minimizes quantity X in an iterative fashion. At this point the algorithm is working well enough that my errors are sometimes getting down below 10^-16 - this is displayed as a 0.00E+00 in my results.
I'm worried that even smaller errors might be overlooked if numbers smaller than 10^-16 are recorded as zero. Is this what happens? I've currently got everything declared as double. Is there a way to declare a custom variable that allows for smaller numbers or more digits?
I'm worried that even smaller errors might be overlooked if numbers smaller than 10^-16 are recorded as zero. Is this what happens? I've currently got everything declared as double. Is there a way to declare a custom variable that allows for smaller numbers or more digits?