Parcourir la source

add of python script to check acos(complex)

Konstantin Ladutenko il y a 10 ans
Parent
commit
ada8cfde91
1 fichiers modifiés avec 4 ajouts et 0 suppressions
  1. 4 0
      tests/dev/test_acos.py

+ 4 - 0
tests/dev/test_acos.py

@@ -0,0 +1,4 @@
+#!/usr/bin/env python
+import cmath
+x = complex(0.42312341412412398237, 1.32312314124141232987987)
+print("value x=",x," acos(x)=", cmath.acos(x))