GraphDistance[g, s, t] gives the distance from source vertex s to target vertex t in the graph g.GraphDistance[g, s] gives the distance from s to all vertices of the graph g.
IndependentEdgeSetQ[g, elist] yields True if the edge list elist is an independent edge set of the graph g, and False otherwise.
Property[item, name -> value] associates the property name -> value with item.
SQLDelete deletes data from a database. An alternative, using raw SQL, is described in "Deleting Data with Raw SQL". If you find that the examples in this tutorial do not ...
SQLUpdate modifies data in a database. An alternative, using raw SQL, is described in "Updating Data with Raw SQL". If you find that the examples in this tutorial do not work ...
DefineDLLFunction["func", " dll", rtype, atypes] returns a Mathematica function that calls the specified function func with argument types atypes and return type rtype in the ...
Code generation from Mathematica involves converting programs written in the Mathematica language into other languages and then supporting them so that they can be executed. ...
CArray
(SymbolicC Package Symbol) CArray[name, args] is a symbolic representation of an array.
CBlock
(SymbolicC Package Symbol) CBlock[args] is a symbolic representation of a block of statements.
CComment[text] is a symbolic representation of a comment. CComment[text, {pre, post}] includes text to add before and after the comment.