ComplexBigMatrices.jl

Julia package to calculate logarithm and exponential of Complex BigFloat (Higher precision) Matrices.
Author MalayMDas
Popularity
0 Stars
Updated Last
1 Year Ago
Started In
September 2021

ComplexBigMatrices

This module calculates exp(), log() of complex BigFloat Matrices by diagonalizing them.

Sample usage

setprecision(512)
a = [[1 1.0im];[1.0im 1]];
biga = Complex{BigFloat}.(a)

using ComplexBigMatrices
eigen(biga)
exp(biga)
log(biga)

Used By Packages

No packages found.