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