package
0.0.0-20191206063509-5125c50dad5e
Repository: https://github.com/mactkg/golang_study.git
Documentation: pkg.go.dev
# Functions
AbsBigFloatComplex calculate absolute of complex number that is represented by big.Float and return two values, real part and imaginary part.
AbsBigRatComplex calculate absolute of complex number that is represented by big.Rat and return two values, real part and imaginary part.
DrawMangelbrot128 draws mandelbrot image using complex128.
DrawMangelbrot64 draws mandelbrot image using complex64.
DrawMangelbrotBigFloat draws mandelbrot image using big.Float.
DrawMangelbrotBigRat draws mandelbrot image using big.Rat.
MultiplyBigFloatComplex returns two values, real part and imaginary part xy = (a + ib)(c + ib) = (ac - bd) + i(ad + bc).
MultiplyBigRatComplex returns two values, real part and imaginary part xy = (a + ib)(c + ib) = (ac - bd) + i(ad + bc).
SqrtBigRat find suare root of big.Rat and return big.Rat.
SquareBigFloatComplex calculate square of complex number that is represented by big.Float and return two values, real part and imaginary part.
SquareBigRatComplex calculate square of complex number that is represented by big.Rat and return two values, real part and imaginary part.