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