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
plottools[curve] - 曲線の 2-D または 3-D プロットオブジェクトの作成
使い方
curve([[x1,y1], [x2, y2], ...] , options)
curve([[x1, y1, z1], [x2, y2, z2], ...] , options)
説明
関数 curve は、2 次元または 3 次元プロットデータのオブジェクトを作成し、これの表示結果は、指定されたリスト内にある点を結んだ曲線になります。curve の最初の引数は、点のリストでなくてはいけません。これらは、2-D または 3-D のどちらであっても構いません。
curve 手続きの呼び出しは、プロットデータのオブジェクトを生成します。それは、PLOT または PLOT3D データ構造内で使用するか、または、関数 plots[display] を用いて表示することができます。
残りの引数は、option = value の形の等式として指定されたオプションとして解釈されます。これらのオプションは、plot コマンドで見られるものと同じです。 詳細については、?plot[options] と ?plot3d[options] を参照して下さい。
コマンド with(plottools,curve) により、このコマンドの省略形の使用が可能になります。
例
with(plottools): l := curve([[0,0], [3,4]], color=red, linestyle=3, thickness=2); plots[display](l); l := curve([[0,0,0],[1,1,1],[1,1,0],[0,0,0]], color=green, thickness=3); plots[display](l);
参照
plottools, plot[option], plot[structure], plots[display]
Download Help Document