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
max - 最大値
min - 最小値
使い方
max(x1, x2, ...)
min(x1, x2, ...)
パラメータ
x1, x2, ... - 任意の式
説明
関数 max と min は、それぞれ 1 つ以上の引数の または 最小値 を返します。
ほとんどの場合、引数は型 numeric で、整数、有理数または浮動小数点数です。しかしながら、機能はより一般的で、未評価の関数呼び出しが返されるような、あらゆる型の引数を用いることができます。
これらのルーチンは、evalr を用いて問題となる不等号の向きを決定しようとします。evalr は、その時点における Digits の設定を用いて計算を行うので、 max(...) または min(...) が未評価の結果を返す場合には、 Digits の値を増やすのが有用かもしれません。
多項式の最大および最小は、区分的な関数に変換することができます。
例
max(3/2, 1.49);
min(3/2, 1.49, f(x));
max(3/5, ln(2), 9/13, -infinity);
max(x+1, x+2, y);
min();
convert(max(x*x-2,x+3),piecewise);
参照
maximize, minimize, extrema, evalr, inifcns, convert[piecewise]
Download Help Document