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

Online Help

All Products    Maple    MapleSim


Typesetting

  

Suppress

  

suppress dependencies of functions

  

Unsuppress

  

disable dependency suppression for a function

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

Suppress(f)

Unsuppress(f)

Parameters

f

-

function, or a set or list of functions

Description

• 

The Suppress command tells the Typesetting package to suppress the dependencies of a specified unknown function on display, and allow entry of that unknown function as just the function name on 2-D entry.

  

In addition, if Suppress is called with only the keyword query, it returns a set of all functions with dependency suppression currently enabled.

• 

Only one suppression can be in effect at any time for a specific function name (e.g. you cannot suppress the dependencies of ft and fx,y at the same time). In the event that Suppress is called for a function with a function name already having a suppression rule, the new function overrides the old.

• 

Suppression is restricted to functions having a simple or indexed name (i.e. the function name must be of type 'name') and the dependencies must be of type 'name'). None of the dependencies can be repeated, and the dependencies cannot be the same as the function name. So, for example, the functions fsinx, fx,x, and ff cannot be suppressed. In the event that an invalid function name is passed to Suppress a warning is issued.

• 

The Unsuppress function simply disables dependency suppression for the specified functions (which for Unsuppress can be simply the name of the functions, or the actual functions).

  

In addition, if Unsuppress is called with only the keyword all, it then disables all dependency suppression currently in effect.

• 

Dependency suppression interacts heavily with differentiation options in Settings (namely useprime, prime, usedot, dot and userep) to display and parse derivatives in a more aesthetic way.

  

In the following examples, we will assume that the settings for useprime and usedot are set to true, and the settings for prime and dot are the names x and t, respectively.

Maple

Without Suppress

With Suppress

------------------

---------------------

------------------

f(x)

fx

f

diff(f(x),x)

f' x

f'

D(f)(0)

f' 0

f' 0

diff(g(t),t)

g.t

g.

D(g)(0)

g.0

g.0

diff(h(x,y),x,y)

2xyhx,y

2xyh

  

And with userep set to true we get:

diff(h(x,y),x,y)

2xyhx,y

hx,y

  

Note that userep has no effect unless the function dependencies are also suppressed.

• 

Note that setting and querying of function suppression can also be performed in the Dependency Suppression area of the interactive Typesetting Assistant.

Examples

withTypesetting:

Suppress 'f' depending on 'x'

Suppressfx

Later change this to f(x,y) -> warning is produced

Suppressfx,y

Suppress multiple functions, some with errors. Error cases are ignored, and all other functions are processed.

Suppressgx,y,hx,y,yy,f1x

Query current suppression

Suppressquery

f,g,h,f1

(1)

Unsuppress f(x,y) and query

Unsuppressf

Suppressquery

g,h,f1

(2)

Unsuppress all and query

Unsuppressall

Suppressquery

(3)

See Also

Typesetting

Typesetting[RuleAssistant]

Typesetting[Settings]