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][CellsWithSolutions] - 特定の実数解を持つセルの取得
使い方
CellsWithSolutions(m, k)
CellsWithSolutions(m, l..r)
パラメータ
m
-
CellDecomposition から返されたとおりの solution record
k,l
非負整数
r
非負整数 または
モデルの説明
呼出手順 CellsWithSolutions() はシステム
の実数解がちょうど であるすべてのセルのインデックスを返します。
呼出手順 CellsWithSolutions() は上記システムの実数解の数が 以上 以下であるすべてのセルのインデックスを返します。
要求された数の解を持つセルが存在しない場合は空のリストが返されます。
このコマンドは RootFinding[Parametric] パッケージの一部であるため、CellsWithSolutions(..) 形式での利用はその前に with(RootFinding[Parametric]) コマンドが実行されている場合に限ります。ただしコマンドをロングフォーマット RootFinding[Parametric][CellsWithSolutions](..) で指定すると、いつでも利用可能です。
アプリケーションと例題
with(RootFinding[Parametric]):
m:=CellDecomposition([x^6+a*y^2-b=0,a*x^2+y^2-b*x*y=0], [x,y]):
m:-SamplePoints;
NumberOfSolutions(m);
CellsWithSolutions(m,4);
CellsWithSolutions(m,0..3);
関連項目
CellDecomposition, Parametric, RootFinding
Download Help Document