Maplesoft has always been a pioneer in math software usability, and continually strives to ensure that new and occasional users are immediately productive while experienced users have the tools and flexibility they need to work efficiently. Usability enhancements in Maple 17 include:
- Automatic command completion is available while entering commands in standard mathematical notation.
- Search and replace has been enhanced to search for names that appear inside mathematical expressions.
- Subscript handling is more intuitive.
- Previously protected variable names, such as I and D, can now be used in your own calculations, even at the top level.
Autocomplete in 2-D Math
When typing command and function names in 2-D Math, Maple now offers quick completions for items that are unambiguous. When such an item is available, it will appear as a yellow tooltip-style popup. Pressing the Tab or Return/Enter key will insert the suggested item.
Enhanced Search and Replace
Search and replace functionality now extends into 2-D Math expressions for simple names. For example, searching for 'x' will find the x in the first term of the expression .
Improved Subscript Handling
There are two types of subscripts in Maple.
- Literal subscripts are a part of the variable name itself, and are not interpreted as an index of any kind.
- Index subscripts are a direct index reference to an element stored in datastructure such as an array or vector.
Maple 17 features improvements to how subscripts are entered in both of these cases, and well as removes the need to enter a backslash in order to explicitly create underscore characters in variable names.
- To create a literal subscript, type the base name followed by two underscores, followed by the subscript. For example, 'a', '_', '_', 'b'.
> |
|
- To create an indexed subscript, use the key sequence Ctrl-Shift-underscore (Command-Shift-underscore on Mac OS X) or surround the subscript with square brackets.
> |
|
- To enter an underscore, simply type the underscore key on your keyboard.
> |
|
Reclaiming the Use of the Names 'I', 'D', 'gamma', and More
You can now reclaim variables such as 'D', 'I' or 'gamma' for use in your calculations.
By declaring 'D' local at the top-level, a new local variable has been created with the name 'D' and made the default in the current name-space in a way similar to that of using the short-name to access package exports after using the "with" command to load a package. The global version of this name, the differential operator, is still available by prefixing the name with colon-dash.
> |
convert(:-D(f)(0), 'diff'); |
Any variable can be declared local, even ones that are not protected.
> |
x := 4.4; y := 320.1; min := 0.001; |
The global versions remain available via :-.
The imaginary unit, I, also obeys a local declaration even though it is a special alias governed by interface(imaginaryunit). In this case the name of the global version becomes _I instead of :-I.
> |
I := <1, 0, 0; 0, 1, 0; 0, 0, 1>; |