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
RootFinding[Parametric][CellLocation] - 特定の点のセルインデックスの取得
使い方
CellLocation(m, s)
CellLocation(m, p)
パラメータ
m
-
CellDecomposition から返されたとおりの solution record
s
パラメータ空間における点を表す parameter=rational number の形の方程式のリスト
p
パラメータ空間における点を表す有理数のリスト
モデルの説明
CellLocation コマンドは与えられた点が位置しているオープンセル (open cell) のインデックスである非負整数を返します。また、 のいずれのオープンセルにも点が位置指定ない場合は を返します。
CellLocation コマンドは与えられた点が位置するセル を割り出します。
点は下記 2 つのリスト形式で指定できます。
parameter=rational number の形式の方程式のリスト s
有理数のリスト p。この場合、m:-Parameters における 番目のパラメータはすべての に対して に置き換えられます。
このコマンドは RootFinding[Parametric] パッケージの一部であるため、CellLocation(..) 形式での利用はその前に with(RootFinding[Parametric]) コマンドが実行されている場合に限ります。ただしコマンドをロングフォーマット RootFinding[Parametric][CellLocation](..) で指定すると、いつでも利用可能です。
アプリケーションと例題
with(RootFinding[Parametric]):
m:=CellDecomposition([x^2+y^2=a,x-y=b,a>0], [x,y]);
CellPlot(m, 'samplepoints');
CellLocation(m, [a=1/2,b=3]);
CellLocation(m, [1,-1]);
点 は discriminant variety 上にあるため、どのオープンセルにも位置していません。
CellLocation(m, [a=1/2,b=1]);
点 は不等式 を違反しており、 が負である半平面に のセルはありません。
CellLocation(m, [-1,1]);
関連項目
CellDecomposition, CellPlot, Parametric, RootFinding
Download Help Document