Most of the documentation provided for Mathematica is concerned with explaining what Mathematica does, not how it does it. But the purpose of this is to say at least a little ...
SQLCreateTable creates a new table in a database. An alternative, using raw SQL, is described in "Creating Tables with Raw SQL". If you find that the examples in this ...
Parallel kernels do not have access to the values of variables defined in the master kernel, nor do they have access to locally defined functions. Mathematica contains a ...
Widgets are the basic component of GUIs built with GUIKit. This tutorial discusses some of the basics of widgets and how they work. More detailed information on widgets can ...
MinimumBandwidthOrdering[g] attempts to find a vertex ordering that minimizes the bandwidth of the undirected graph g.MinimumBandwidthOrdering[m] attempts to find row and ...
SparseArray[{pos_1 -> val_1, pos_2 -> val_2, ...}] yields a sparse array in which values val_i appear at positions pos_i. SparseArray[{pos_1, pos_2, ...} -> {val_1, val_2, ...
The IDA package is part of the SUNDIALS (SUite of Nonlinear and DIfferential/ALgebraic equation Solvers) developed at the Center for Applied Scientific Computing of Lawrence ...
In some cases it is useful to split the differential system into subsystems and solve each subsystem using appropriate integration methods. Recombining the individual ...
The ability to generate pseudorandom numbers is important for simulating events, estimating probabilities and other quantities, making randomized assignments or selections, ...
SQLSelect selects and returns data from a database. An alternative, using raw SQL, is described in "Selecting Data with Raw SQL". If you find that the examples in this ...