HornerForm[poly] puts the polynomial poly in Horner form.HornerForm[poly, vars] puts poly in Horner form with respect to the variable or variable list ...
SetAttributes[s, attr] adds attr to the list of attributes of the symbol s.
MemoryConstrained[expr, b] evaluates expr, stopping if more than b bytes of memory are requested. MemoryConstrained[expr, b, failexpr] returns failexpr if the memory ...
TimeConstrained[expr, t] evaluates expr, stopping after t seconds. TimeConstrained[expr, t, failexpr] returns failexpr if the time constraint is not met.
TracePrint[expr] prints all expressions used in the evaluation of expr. TracePrint[expr, form] includes only those expressions which match form. TracePrint[expr, s] includes ...
TraceDialog[expr] initiates a dialog for every expression used in the evaluation of expr. TraceDialog[expr, form] initiates a dialog only for expressions which match form. ...
EvaluationObject[n, expr, ...] represents an expression submitted for evaluation on any available parallel kernel.
NHoldFirst is an attribute which specifies that the first argument to a function should not be affected by N.
If you have a function defined in an external program, then what you need to do in order to make it possible to call the function from within Mathematica is to add ...
NHoldRest is an attribute which specifies that all but the first argument to a function should not be affected by N.