TriangularDistribution[{min, max}] represents a symmetric triangular statistical distribution giving values between min and max. TriangularDistribution[{min, max}, c] ...
CUDAInformation[] queries information on all CUDA devices detected.CUDAInformation[dev] queries information on CUDA dev.CUDAInformation[dev, prop] queries prop on CUDA dev.
CUDAMemoryLoad[list] registers list into the CUDALink memory manager.CUDAMemoryLoad[img] registers img into the CUDALink memory manager.
CreateLibrary[src, name, "Compiler" -> NVCCCompiler] compiles a string of CUDA code in src into a library and returns the full path to the library.CreateLibrary [{ file, ...
Programming OpenCL in Mathematica is simple since the user need not write C wrapper code—which can be quite verbose, difficult to understand, and hard to debug. Using ...
Solve
(Built-in Mathematica Symbol) Solve[expr, vars] attempts to solve the system expr of equations or inequalities for the variables vars. Solve[expr, vars, dom] solves over the domain dom. Common choices of ...
KagiChart[{{date_1, p_1}, {date_2, p_2}, ...}] makes a Kagi chart with prices p_i at date date_i.KagiChart[{" name", daterange}] makes a Kagi chart of closing prices for the ...
RenkoChart[{{date_1, p_1}, {date_2, p_2}, ...}] makes a Renko chart with prices p_i at date date_i.RenkoChart[{" name", daterange}] makes a Renko chart of closing prices for ...
An integration rule computes an estimate of an integral over a region, typically using a weighted sum. In the context of NIntegrate usage, an integration rule object provides ...
Wolfram LibraryLink allows dynamic libraries to be directly loaded into the Mathematica kernel so that functions in the libraries can be immediately called from Mathematica. ...