In a typical Mathematica package, there are generally two kinds of new symbols that are introduced. The first kind are ones that you want to 'export' for use outside the ...
FileNameSetter[name] represents a file name setter which displays as a Browse button and when clicked brings up a system file opening dialog, starting from the location ...
SpheroidalEigenvalue[n, m, \[Gamma]] gives the spheroidal eigenvalue with degree n and order m.
The Mathematica function Integrate[f,x] gives you the indefinite integral ∫f dx. You can think of the operation of indefinite integration as being an inverse of ...
Mathematica treats equations as logical statements. If you type in an equation like x^2+3x==2, Mathematica interprets this as a logical statement which asserts that x^2+3x is ...
JDBCDriver[args] specifies the configuration for connecting to a database produced by a specific vendor.
SQLConnection[...] is an object that represents a connection to a data source.
SQLConnectionPool[...] is an object that represents a connection pool to a data source.
SQLInsert[conn, table, cols, data] inserts data into a table in an SQL connection.
SQLStringMatchQ[col, patt] specifies a condition in an SQL query used to test whether the value of a column matches a pattern. The actual format for the pattern varies from ...