Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
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