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
abs - 絶対値関数
使い方
abs(x) abs(1, x)
パラメータ
x - 数式
説明
abs 関数は数式 x の absolute value () を返します。
x が関数 f を含むなら、abs はその絶対値を決めるために、プロシージャ abs/f の実行を試みます。ユーザはこれを利用し、簡単に abs の機能を拡張することができます。
abs の導関数は abs(1,x) で表されます。これは、全ての非ゼロの実数に対して、signum(x) となります。それ以外は、定義されていません。
abs の高次の導関数は、abs(n,x) で定義されます。ここで n は正の整数です。n が分かると、式は自動的に signum か abs の導関数の式に簡単化されます。
例
abs(-11);
abs(3-4*I);
abs(cos(3));
a:=abs(2*x-3);
x:=1;
a;
abs(sqrt(2)*I*u^2*v);
expand(%);
combine(%,abs);
diff(abs(y),y);
diff(abs(y),y,y);
abs(2,y);
参照
evalc, signum, inifcn, convert[abs], convert[piecewise], piecewise
Download Help Document