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
iscont - 区間上の連続性をテストする
使い方
iscont(expr, x = a .. b)
iscont(expr, x = a .. b, 'closed')
iscont(expr, x = a .. b, 'open')
パラメータ
expr - 代数式
x - 変数名
a..b - 実区間
'closed' - (オプション)区間の両端点のチェックを指定
'open' - (オプション)区間の両端点のチェックせずを指定(デフォルト)
説明
関数 iscont は式が区間上で連続 (したがって極を1つも持たない) ならば true (真) を、連続でないならば false (偽) を返します。iscont が結果を決定できない場合、それは FAIL を返します。
関数 iscont は式に含まれるどんな記号も実数であると仮定します。
デフォルト、またはオプションの 3 番目の引数が 'open' と指定されているならば、区間は開区間とみなされます。オプションの3番目の引数が 'closed' と指定されている場合は、両端点における連続性をチェックします。したがって特に、このオプションの下では、limit(expr,x=a,right) および limit(expr,x=b,left) は、ともに存在して有限でなければなりません。
区間の両端の点は、実定数であるか、無限大、あるいは負の無限大でなければなりません。
区間の両端の点の 1 番目の値が2番目の値より大きい場合、iscont はそれらをひっくりかえします。
例
iscont( 1/x, x=1..2 );
iscont( 1/x, x=-1..1 );
iscont( 1/x, x=0..1 );
iscont( 1/x, x=0..1, 'closed' );
iscont( 1/(x+a), x=0..1);
参照
discont
Download Help Document