Show Table - 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


Maplets[Examples]

  

ShowTable

  

display a table to the user

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

ShowTable(L, opts)

Parameters

L

-

nested list

opts

-

equation(s) of the form option=value where option is one of caption, height, title, or width; specify options for the Maplet application

Description

• 

The ShowTable(L) calling sequence displays a Maplet application containing a nested list (list of lists) interpreted as a table. The user can select OK to close the Maplet application and NULL is returned.

• 

The ShowTable sample Maplet worksheet describes how to write a Maplet application that behaves similarly to this routine by using the Maplets[Elements] package.

• 

The opts argument can contain one or more of the following equations that set Maplet application options.

  

 

  

caption = string or symbol

  

This option sets the caption of the Maplet application.  By default, there is no caption.

  

 

  

height = posint

  

The table height in pixels.  By default, this depends upon the entries in the table.

  

 

  

title = string or symbol

  

This option sets the title of the Maplet application.  By default, the title is Show Table.

  

 

  

width = posint

  

The table width in pixels.  By default, this depends upon the entries in the table.

Examples

withMapletsExamples:

ShowTablex,sinx,seqevalf32πi20,evalf4sini,i=1..20,title=The Sine Function

See Also

evalf

Maplets[Elements]

Maplets[Elements][Table]

Maplets[Examples]

Overview of Maplet Applications

seq

ShowTable Sample Maplet