Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
Maplets[Examples][ShowTable] - ユーザに対する表の表示
使い方
ShowTable(L, opts)
パラメータ
L - 階層化されたリスト
opts - option=value の形の等式; ここで option は caption, height, title または width のいずれか; maplet のためのオプション指定
説明
ShowTable(L) コマンドは、表として解釈される階層化されたリスト(リスト群からなるリスト)を含む maplet を表示します。ユーザは OK をクリックして maplet を終了します。このとき、NULL が返されます。
ShowTable sample maplet worksheet に、Maplets[Elements] パッケージを用いてこのルーチンと同様の動作を行う maplet を書く方法について、記述されています。
opts 引数は、maplet のオプションを設定する、1つまたは複数の以下の等式を含みます。
caption = string または symbol
このオプションは、maplet につける見出しを設定します。デフォルトでは、見出しはありません。
height = posint
表の高さ(単位ピクセル)。デフォルトの値は、表内の記載事項に依存します。
title = string または symbol
このオプションは、maplet のタイトルを設定します。デフォルトのタイトルは、Show Table です。
width = posint
表の幅(単位ピクセル)。デフォルトの値は、表内の記載事項に依存します。
例
with(Maplets[Examples]): ShowTable( [[x, sin(x)], seq( [evalf[3](2*Pi*i/20), evalf[4](sin(i))], i = 1..20 )], 'title' = "The Sine Function" );
参照
evalf, Maplets パッケージの概要, Maplets[Elements] パッケージの紹介, Maplets[Elements][Table], Maplets[Examples] パッケージの紹介, seq, ShowTable Sample Maplet
Download Help Document