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[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