Переглянути джерело

add of python script to check acos(complex)

Konstantin Ladutenko 10 роки тому
батько
коміт
ada8cfde91
1 змінених файлів з 4 додано та 0 видалено
  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))