This tutorial contains simple examples of DatabaseLink that give an overview of its functionality and some ideas of how to get started. It uses a lightweight database, ...
The first step in using a database is making a connection. This part of the tutorial discusses how to do this. If you are just starting to use DatabaseLink, you might want to ...
Files and pipes are both examples of general Mathematica objects known as streams. A stream in Mathematica is a source of input or output. There are many operations that you ...
The Database Explorer is a graphical interface to DatabaseLink. It provides a number of useful functions, such as managing connections and working with the data in a ...
Some database operations involve carrying out a sequence of database commands. For example, information in two different tables may need to be updated. In these cases it may ...
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 ...
The CCompilerDriver package lets you work with C compilers that are installed on your computer. It lets you build executables, libraries, and object files from C source code. ...
The functional and list-oriented characteristics of the core Mathematica language allow CUDALink to provide immediate built-in data parallelism, automatically distributing ...
ParallelTry[f, {arg_1, arg_2, ...}] evaluates f[arg_i] in parallel, returning the first result received.ParallelTry[f, {arg_1, arg_2, ...}, k] returns a list of the first k ...
Dynamic
(Built-in Mathematica Symbol) Dynamic[expr] represents an object that displays as the dynamically updated current value of expr. If the displayed form of Dynamic[expr] is interactively changed or edited, ...