Mathematica's ability to deal with symbolic expressions, as well as numbers, allows you to use it for many kinds of mathematics. Calculus is one example. With Mathematica, ...
Because GPUs are SIMD machines, to exploit CUDA's potential you must pose the problem in an SIMD manner. Computation that can be partitioned in such a way that each thread ...
CheckAbort[expr, failexpr] evaluates expr, returning failexpr if an abort occurs.
$NumberMarks gives the default value for the option NumberMarks, which specifies whether ` marks should be included in the input form representations of approximate numbers.
Mathematica can represent bit vectors of arbitrary length as integers, and uses highly optimized algorithms—including several original to Wolfram Research—to perform bitwise ...
CurvatureFlowFilter[image] applies a mean curvature flow filter to image.CurvatureFlowFilter[image, t] specifies the amount t of curvature flow to be ...
Projection[u, v] finds the projection of the vector u onto the vector v.Projection[u, v, f] finds projections with respect to the inner product function f.
BSplineBasis[d, x] gives the zeroth uniform B-spline basis function of degree d at x.BSplineBasis[d, n, x] gives the n\[Null]^th uniform B-spline basis function of degree ...
BitShiftLeft[n, k] shifts the binary bits in the integer n to the left by k places, padding with zeros on the right.BitShiftLeft[n] shifts one bit to the left.
Majority[e_1, e_2, ...] gives True if the majority of the e_i are True, and False if the majority are False.