Function: math[prop] - return the property of an object
Calling Sequence:
prop(n);
Parameters:
n - one or more expressions
Description:
math/prop returns the property of an object if it has been assigned one with the assume command or related functions.
If a property has been assigned to n, it is returned, otherwise the string `no property` will be returned.
You may pass two or more objects to prop, in this case a sequence of properties or `no property` strings is returned.
This function is part of the math package, and so can be used only after performing the command with(math) or with(math, prop).
Examples:
> with(math, prop):
> assume(n, integer, n > 0);
> prop(n);
See Also:
math/assumed , assume.
Version History:
Version 1.0 - October 20, 1998