CUDAMap[f, lst] applies f to each element on lst.
First
(Built-in Mathematica Symbol) First[expr] gives the first element in expr.
CUDAFoldList[f, x, {a, b, ...}] gives {x, f[x, a], f[f[x, a], b], ...}.
x -= dx subtracts dx from x and returns the new value of x.
PopupView[{expr_1, expr_2, ...}] represents an object which displays as a popup menu whose items are the expr_i.PopupView[{expr_1, expr_2, ...}, i] makes the i\[Null]^th ...
IntegerPartitions[n] gives a list of all possible ways to partition the integer n into smaller integers. IntegerPartitions[n, k] gives partitions into at most k integers. ...
ActionMenu[name, {lbl_1 :> act_1, lbl_2 :> act_2, ...}] represents an action menu with label name and with items labeled lbl_i that evaluates the expression act_i if the ...
In an expression like f[{a,b,c}] you are giving a list as the argument to a function. Often you need instead to apply a function directly to the elements of a list, rather ...
ListVectorPlot3D[array] generates a 3D vector plot from a 3D array of vector field values.ListVectorPlot3D[{{{x_1, y_1, z_1}, {vx_1, vy_1, vz_1}}, ...}] generates a 3D vector ...
ListVectorPlot[array] generates a vector plot from an array of vector field values.ListVectorPlot[{{{x_1, y_1}, {vx_1, vy_1}}, ...}] generates a vector plot from vector field ...