Hi, I wanted to ask that when using nimpy can I import a specific function by running the following code.
import nimpy
let np = pyImport("numpy")
from np import np.linalg inv
Something like this I guess?
import nimpy
let np = pyImport("numpy")
let linalg = pyImport("numpy.linalg")
let a = np.array([[1.0, 2.0], [3.0, 4.0]])
echo linalg.inv(a)