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
convert/list - リストに変換
使い方
convert( table, list )
convert( vector, list )
convert( string, list )
convert( expression, list )
パラメータ
table - テーブル
vector - ベクトル
string - 文字列
expression - Maple の式列
説明
convert/list はテーブルまたは 1 次元の配列を引数とし、その要素によるリストを作ります。
文字列はその文字を要素とするリストに変換されますが、その際文字の順序は保たれます。(記号についてはこの限りではありません。)
他の任意の Maple 式に対しては、式の被作用子のリストが返されます。
例
A := array([x,y,z]): convert(A,'list');
B := table([(3)=123,(7)=456]): convert(B,'list');
convert( "a string", 'list' );
convert( aSymbol, 'list' );
expr := r + s - t;
convert(expr,'list');
参照
convert
Download Help Document