pybind11/example/example10.py

20 lines
575 B
Python
Raw Normal View History

2015-07-26 14:33:49 +00:00
#!/usr/bin/env python3
import sys
sys.path.append('.')
import example
import numpy as np
from example import vectorized_func
from example import vectorized_func2
2015-07-28 14:12:20 +00:00
from example import vectorized_func3
print(vectorized_func3(np.array(3+7j)))
2015-07-26 14:33:49 +00:00
for f in [vectorized_func, vectorized_func2]:
print(f(1, 2, 3))
print(f(np.array(1), np.array(2), 3))
print(f(np.array([1, 3]), np.array([2, 4]), 3))
print(f(np.array([[1, 3, 5], [7, 9, 11]]), np.array([[2, 4, 6], [8, 10, 12]]), 3))
print(np.array([[1, 3, 5], [7, 9, 11]])* np.array([[2, 4, 6], [8, 10, 12]])*3)