We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 399c9fc commit 93e8746Copy full SHA for 93e8746
src/sbmlsim/julia/julia.md
@@ -0,0 +1,12 @@
1
+# Julia integration
2
+- many interesting functionality in python
3
+- direct integration of python and julia
4
+
5
+https://blog.glcs.io/julia-python-juliacall
6
7
+juliacall
8
9
+https://discourse.julialang.org/t/accelerating-calling-a-julia-function-from-python-via-juliacall-and-ctypes/124143
10
11
+Writing high performance C extensions for Python in Minutes
12
+https://github.com/Suzhou-Tongyuan/jnumpy
src/sbmlsim/julia/juliacall_example.py
@@ -0,0 +1,9 @@
+from juliacall import Main as jl
+import numpy as np
+A = np.array(jl.rand(5, 3))
+x = np.array(jl.randn(3))
+y = A @ x
+print("juliacall sucessfull")
+# print(y)
0 commit comments