New in Wolfram
Mathematica
8: Dynamic Library Loading
◄
previous
|
next
►
Software Development
Many Built-in Examples
The
LibraryLink
documentation
contains many
examples
such as the following, which computes the Mandelbrot set.
In[1]:=
X
mlf = LibraryFunctionLoad["demo_numerical", "mandelbrot", {Complex}, Integer]; Plot3D[mlf[x + I y], {x, -2., .5}, {y, -1.25, 1.25}, PlotPoints -> 100, ColorFunction -> "Rainbow"]
Out[1]=