mirror of
https://github.com/triqs/dft_tools
synced 2024-11-01 03:33:50 +01:00
8 lines
82 B
Python
8 lines
82 B
Python
|
import numpy as np
|
||
|
from expr import f
|
||
|
|
||
|
a = np.array( [[1,2], [3,4]])
|
||
|
|
||
|
print f(a)
|
||
|
|