Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
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