Maplets[Examples]
ShowTable
display a table to the user
Calling Sequence
Parameters
Description
Examples
ShowTable(L, opts)
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
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.
with⁡MapletsExamples:
ShowTable⁡x,sin⁡x,seq⁡evalf3⁡2⁢π⁢i20,evalf4⁡sin⁡i,i=1..20,title=The Sine Function
See Also
evalf
Maplets[Elements]
Maplets[Elements][Table]
Overview of Maplet Applications
seq
ShowTable Sample Maplet
Download Help Document