New in Wolfram
Mathematica
8: Mejoras en el rendimiento del compilador
◄
previous
|
next
►
Desarrollo de Software
Llame a una función de biblioteca externa desde Compile
Compile
puede llamar a funciones externas de
LibraryLink
.
In[1]:=
X
fun = LibraryFunctionLoad["demo", "demo_I_I", {Integer}, Integer]; c = Compile[{{x, _Integer}}, fun[x]]; c[3]
Out[1]=