You can use the Mathematica function DSolve to find symbolic solutions to ordinary and partial differential equations. Solving a differential equation consists essentially in ...
First
(Built-in Mathematica Symbol) First[expr] gives the first element in expr.
Last
(Built-in Mathematica Symbol) Last[expr] gives the last element in expr.
CUDA is a general C-like programming developed by NVIDIA to program Graphical Processing Units (GPUs). CUDALink provides an easy interface to program the GPU by removing many ...
BubbleChart[{{x_1, y_1, z_1}, {x_2, y_2, z_2}, ...}] makes a bubble chart with bubbles at positions {x_i, y_i} with sizes z_i.BubbleChart[{..., w_i[{x_i, y_i, z_i}, ...], ...
FindIntegerNullVector[{x_1, x_2, ..., x_n}] finds a list of integers a_i such that a_1 x_1 + a_2 x_2 + \[CenterEllipsis] + a_n x_n == 0. FindIntegerNullVector[{x_1, x_2, ..., ...
GraphPlot3D[{v i 1 -> v j 1, v i 2 -> v j 2, ...}] generates a 3D plot of the graph in which vertex v_ik is connected to vertex v_jk.GraphPlot3D[{{v i 1 -> v j 1, lbl_1}, ...
HistogramList[{x_1, x_2, ...}] gives a list of bins and histogram heights of the values x_i.HistogramList[{{x_1, y_1, ...}, {x_2, y_2, ...}, ...}] gives a list of bins and ...
RectangleChart[{{x_1, y_1}, {x_2, y_2}, ...}] makes a rectangle chart with bars of width x_i and height y_i. RectangleChart[{..., w_i[{x_i, y_i}, ...], ..., w_j[{x_i, y_j}, ...
Mathematica provides functions that allow users to write their own file format converters and integrate them with the Mathematica Import and Export framework. You can ...