Open OsmarCLFilho opened 8 months ago
Given a + bim, we could just return Base.sqrt(a + bim) since it can handle those values without throwing domain errors.
a + bim
Base.sqrt(a + bim)
Currently, NaNMath.sqrt(a + bim) will just yield a missing method error.
NaNMath.sqrt(a + bim)
This is essentially the same as #66.
Given
a + bim
, we could just returnBase.sqrt(a + bim)
since it can handle those values without throwing domain errors.Currently,
NaNMath.sqrt(a + bim)
will just yield a missing method error.