Is there any practical way to perform calculations such as those involved in generating the Mandelbrot Set for values for precise that what double
or long double
can provide? I was thinking of possibly having two variables(either double or long), one storing the value similar to scientific notation and the other storing the negative log10 of the value, but I'm not sure if there would actually be a way to perform the calculation like this.
Calculate Mandelbrot set for greater precision
Asked Answered
© 2022 - 2024 — McMap. All rights reserved.
x
has a huge number of digits, you still need some calculation mechanism, which is why it is simpler to use an arbitrary precision library (as @Ramsgate mentioned) – Saltish