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
plots[listcontplot] - グリッド状データの 2 次元等高線図を表示
使い方
listcontplot(G, options)
パラメータ
G
-
数値リストのリストまたは数値行列
説明
listcontplot 関数は、グリッド(リストのリスト、行列)状の数値データから 2-D の等高線をプロットします。
残りの引数はプロットオプションと見なします。指定可能なオプション一覧は plot[options] をご覧ください。
levels オプションは contours オプションと同義です。いずれも描画する等高線数を指定し、デフォルト値は 8。
filledregions=true のオプションを指定すると、色塗りされた等高線を表示します。この場合、coloring オプションより色のグラデーションや範囲を指定することができます。デフォルトは赤から黄の範囲。色の範囲は coloring=[a,b] の形式(ただし、a と b はそれぞれ plot が認識できる色)で指定します。色についての詳細は plot[color] をご覧ください。
外部ファイルに保存されたデータは ImportMatrix コマンドによりインポートされてから listcontplot に渡されます。
プロットグリッドは、Maple で表示されるリストまたは行列のデータと向きが正確には一致しないので注意してください。 番目のサブリストまたは行列の行が、x 軸の値が となるデータ値に対応します。
互換性
G パラメータは Maple 15 で更新されました。
例
with(plots):
listcontplot([seq([seq( sin(x/5*y/5), x=-15..15)], y=-15..15)]);
listcontplot(Matrix([seq([seq(sin((i-15)*(j-10)/Pi/20),i=1..30)],j=1..20)]));
listcontplot([seq([seq(sin((i-15)*(j-10)/Pi/20),i=1..30)],j=1..20)], filledregions=true);
参照
ImportMatrix, plot, plot[color], plot[options], plots[contourplot], plots[matrixplot], plots[pointplot], readdata
Download Help Document