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[pointplot] - 2D のポイントプロットを作成します
使い方
pointplot(L,options);
パラメータ
L - 2 次元の点のリストまたは集合
説明
pointplot 関数は、2 次元の点のプロットを作成するために使われます。プロットされる点は、集合かリスト L です。リストは、数字のペア のリストか、点の数字だけの平らなリストです。
オプション connect=true を指定すると、点を線分でつないで表示します。この場合、L は点の順序を表せるよう、リストで指定します。このオプションは、普通の plot オプションの style=LINE と同じ意味です。
その他の引数はオプションで、option = value の形で指定します。これらのオプションは、?plot[options] に記述があるように、 plot コマンドで利用できるものと同じです。
pointplot の結果は、プロットデバイスで解釈される PLOT 構造です。ユーザーは、PLOT の値を変数に代入し、それをファイルに保存、再表示のために読み込みなおすことができます。plot[structure] をご覧ください。
前は、pointoplot 関数は 3D のポイントプロットも実行しました。今は、plots[pointplot3d] で実行します。
pointplot は with(plots) または witha(plots,pointplot) で定義できます。plots[pointplot] を使うと、定義せずに実行できます。
例
with(plots): pointplot({[0,1],[1,-1],[3,0],[4,-3]},axes=BOXED); pointplot({seq([n,sin(n/10)],n=0..30)}); points:= { seq([T^2,T],T=0..40) }: pointplot(points); pointplot(points,coords=polar,color=red);
参照
plot[option], plot[structure]
Download Help Document