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[sector] - 円盤または円環の扇形の 2-D プロットオブジェクトを生成
使い方
sector([x, y], r, a..b, options)
sector([x, y], r1..r2, a..b, options)
パラメータ
[x, y]
-
扇形の中心
r
扇形の半径
r1..r2
円環扇形の開始半径と終了半径
a
開始角度 (ラジアン)
b
終了角度 (ラジアン)
options
(オプション) option=value 形式の方程式。完全なリストについては、plot/options を参照してください。
説明
sector コマンドは、2-D のプロットデータオブジェクトを作成します。このオブジェクトは半径が r、中心が [x,y] の円盤の扇形として表示されます。扇形はラジアン角度 a から始まり、b で終わります。
半径を範囲 r1..r2 として指定すると、内側半径 r1、外側半径 r2 の円環扇形が作成されます。
sector コマンドによって生成されたプロットデータオブジェクトは、PLOT データ構造で使用したり、plots[display] コマンドを使用して表示したりすることができます。
残りの引数はオプションとして解釈されます (option = value 形式の方程式として指定)。詳細は plottools および plot/options を参照してください。
互換性
plottools[sector] コマンドは Maple 16 で導入されました。
Maple 16 における変更点についての詳細は、Maple 16 の新機能 を参照してください。
例
with(plottools):
with(plots):
c := sector([1,1], 5, 0..Pi/4, color=blue):
display(c, axes=none, scaling=constrained);
display(sector([0,0], 1..2, Pi/3..Pi/2, color="Khaki"), axes=none, scaling=constrained);
d := sector([1,1], 5, Pi/4..4*Pi/3, color=red):
e := sector([1,1], 5, 4*Pi/3..35*Pi/18, color=green):
f := sector([1,1], 5, 35*Pi/18..2*Pi, color=yellow):
display(c, d, e, f, axes=none, scaling=constrained);
関連項目
plot/options、plot/structure、plots[display]、plottools、plottools[arc]
Download Help Document