Compatibility - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Compatibility Issues in Maple 2018

The following is a brief description of the compatibility issues that affect users upgrading from Maple 2017 to Maple 2018.

 

Units in plot Ranges

The gcdex Command

Display of Examples in 2-D Math in the Help System

Function Assignments in 2-D Input

Multiplication by infinity

Units in plot Ranges

The plot and plot3d commands accept ranges with units, such as x=2m..5m or pressure=10kPa..1000kPa. Before Maple 2018, you could use a range that had a unit on only the left- or the right-hand side, such as x=2..5m or pressure=10kPa..1000. This functionality was considered more confusing than helpful and therefore removed; you now need to supply a unit on both sides of a range.

The gcdex Command

For the calling sequence with 6 arguments, the gcdex command now displays an error message when the gcd of the first two polynomials does not divide the third polynomial.

Display of Examples in 2-D Math in the Help System

In the Examples section of help pages, the display of the 2-D math inputs has changed in Maple 2018. To better match the calling sequences that are being demonstrated, examples are shown using the Maple language format, rather than the typeset format.  For example, intsinx,x=0..π rather than 0πsinxⅆx on the int/details help page.

Function Assignments in 2-D Input

When the functionassign setting (see Typesetting:-Settings) is true (its default value) and f is a procedure, then fargsexpression is now parsed as a remember-table assignment unless f has option function_assign, in which case it is parsed as a new function assignment. This change does not affect any procedures that are initially created via the function-assignment syntax, as option function_assign is now automatically added to these procedures.

Multiplication by infinity

In previous Maple releases, the kernel would automatically expand the product of a complex number with rational coefficients by ± or ±I into s+tI, where s,t−1,0,1. As of Maple 2018, this returns a product p+qI where p,q are coprime integers. For example, both of the following examples used to return +I:

(2+2*I)*infinity;

1+I

(1)

a := 4/3-2*I;

a432I

(2)

b := I*infinity;

bI

(3)

a*b;

3+2I

(4)

The previous behavior can be restored by applying the expand command:

expand((1));

+I

(5)

expand((4));

+I

(6)