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
SolveTools[Engine]
使い方
SolveTools:-Engine( eqns, vars, options )
パラメータ
eqns
-
集合
vars
{集合,リスト}
options
(オプション)キーワードオプションの列
モデルの説明
solve エンジンに対するプログラミングレベルのインターフェイス。最小限の前処理および後処理を実行し、{var1 = expr1, var2 <= expr2, .. } 形式の解のリストを返します。
オプション
allsolutions
無限に多数の解を持ちうる非代数方程式のパラメータ化された解を返します(デフォルトは false です)。
conditionalsolutions
区分的条件を伴う解を返します(デフォルトは true です)。
dropmultiplicity
多項式の重複した同一解を返しません(デフォルトは false です)。
explicit
可能な場合に、解の RootOfs を根として表します(デフォルトは false です)。
maxsols = posint または pos_infinity
返される解の数を制限します(デフォルトは です)。
アプリケーションと例題
SolveTools:-Engine({x^2+1},{x});
SolveTools:-Engine({cos(x)-1},{x},allsolutions);
SolveTools:-Engine({x^4+1},{x},explicit);
Download Help Document