Language and System Changes in Maple 9
Maple 9 includes the following language and system changes.
Type System
verify
A new type character recognizes single-character strings.
type( "a", 'character' );
true
type( "abc", 'character' );
false
The new types std and stdlib allow you to identify procedures, packages, and other modules that are part of the standard library shipped with your Maple installation. The type stdlib applies to objects saved in the library, while type std also includes the built-in (kernel) procedures.
type( 'sin', 'stdlib' );
type( 'sin', 'std' );
type( 'op', 'stdlib' );
type( 'op', 'std' );
p := proc( x, y ) 2 * x - y end proc:
type( 'p', 'stdlib' );
type( 'p', 'std' );
The new verification verify/range compares ranges.
verify({1..2,3.00000002..4.00000001}, {3..4,1..2}, set(range(float(100))));
See Also
Index of New Maple 9 Features
type/character
type/std
type/stdlib
verify/range
Download Help Document
What kind of issue would you like to report? (Optional)