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[annulus] - 円環の 2-D プロットオブジェクトを生成
使い方
annulus([x, y], r1..r2, options)
パラメータ
[x, y]
-
(オプション) 円環の中心; デフォルトは [0,0]
r1..r2
(オプション) 円環の内径と外径; デフォルトは 1..2
options
(オプション) option=value 形式の方程式。完全なリストについては、plot/options を参照してください。
説明
annulus コマンドは 2 次元のプロットデータオブジェクトを作成します。このオブジェクトは内径 r1、外径 r2、中心 [x,y] の円環として表示されます。
annulus コマンドによって生成されたプロットデータオブジェクトは、PLOT データ構造で使用したり、plots[display] コマンドを使用して表示したりすることができます。
残りの引数はオプションとして解釈されます (option = value 形式の方程式として指定)。詳細は plottools および plot/options を参照してください。
互換性
plottools[annulus] コマンドは Maple 16 で導入されました。
Maple 16 における変更点についての詳細は、Maple 16 の新機能 を参照してください。
例
with(plottools):
with(plots):
display( annulus() );
display( annulus([1,1]) );
display( annulus(2..3) );
display( annulus(2..3, color="Red" ) );
display( annulus([2,2], 1/2..2, color="Green", style='polygon') );
関連項目
plot/options、plot/structure、plots[display]、plottools、plottools[arc]、plottools[disk]、plottools[sector]
Download Help Document