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][SampleSolutions] - 特定パラメータ値に対するシステムの解
使い方
SampleSolutions(m, s, options)
SampleSolutions(m, p, options)
SampleSolutions(m, k, options)
パラメータ
m
-
CellDecomposition から返されたとおりの solution record
s
パラメータ空間における点を表す parameter=rational number の形の方程式のリスト
p
パラメータ空間における点を表す有理数のリスト
k
正整数; セルのインデックス
options
(オプション) ソルバのオプション値; RootFinding[Isolate] を参照してください。
モデルの説明
SampleSolutions コマンドは与えられた点でシステム
のパラメータを評価した場合に得られる実数解を計算します。
output=interval オプションが指定されている場合、解は variable=number か、variable=[number,number] の形式の方程式のリストリストとして返されます。
点は下記 3 つの方法で指定できます:
parameter=rational number の形式の方程式のリスト s を使用した方法
有理数のリスト p を使用した方法。この場合、m:-Parameters における 番目のパラメータはすべての に対して に置き換えられます。
セルインデックス k を使用した方法。この場合、点は m:-SamplePoints の 番目のサンプル点を指します。
オプションの引数が指定されている場合、それらは直接 RootFinding[Isolate] に渡されます。
このコマンドは RootFinding[Parametric] パッケージの一部であるため、SampleSolutions(..) 形式での利用はその前に with(RootFinding[Parametric]) コマンドが実行されている場合に限ります。ただしコマンドをロングフォーマット RootFinding[Parametric][SampleSolutions](..) で指定すると、いつでも利用可能です。
アプリケーションと例題
with(RootFinding[Parametric]):
m:=CellDecomposition([x^2+y^2=a,x-y=b,a>0],[x,y]):
m:-SamplePoints;
下記 3 つの呼出手順は同等です:
SampleSolutions(m, [a=1,b=-1]);
SampleSolutions(m, [1,-1]);
SampleSolutions(m, 2);
浮動小数点近似の代わりに分離区間として出力を得るには、RootFinding[Isolate] がとることができる output=interval オプションを使用します。
SampleSolutions(m,[a=1,b=-1],output=interval);
サンプル点に対応しないパラメータ値を代入し、精度をデフォルトの から 桁に変更して非パラメトリックシステムを解きます。
SampleSolutions(m, [1,1/2], digits=15);
関連項目
CellDecomposition, Parametric, RootFinding, RootFinding[Isolate]
Download Help Document