could not evaluate expression - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.
Our website is currently undergoing maintenance, which may result in occasional errors while browsing. We apologize for any inconvenience this may cause and are working swiftly to restore full functionality. Thank you for your patience.

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : System : Error Message Guide : could not evaluate expression

Error, (in plot/iplot2d/levelcurve) could not evaluate expression

 

Description

Examples

Description

This error occurs if Maple cannot evaluate the given expression to a numeric value when graphing with plots[contourplot].

Examples

withplots:


Example 1

In this example, the wrong variable is used in the expression to be plotted.

contourplotsinxz,x=3..3, y=3..3

Error, (in plot/iplot2d/levelcurve) could not evaluate expression

 

Solution:

contourplotsinxy,x=3..3, y=3..3


Example 2

In the following example, the first argument passed to contourplot is a complex value, instead of a real value.

contourplotx+Iy,x=3..3,y=3..3

Error, (in plot/iplot2d/levelcurve) could not evaluate expression

 

Solution:

To correct the error, pass only the real part of the complex value as an argument to contourplot.

contourplotRex+Iy,x=3..3,y=3..3

See Also

plots[contourplot]

plots