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
indets - 式の中の不定元を見つける
使い方
indets(expr)
indets(expr,typename)
パラメータ
expr - 任意の数式
typename - 型名(オプション)
説明
引数が 1 個の場合には、indets は expr に含まれるすべての不定元を含む集合を返します。
expr は有理式(いくつかの与えられた記号に演算 +, -, *, / を施して得られる数式)と見なされます。したがって、sin(x), f(x,y), x^(1/2) のような数式は不定元として扱われます。
引数が 1 個の場合には、sin(1), f(3,5), 2^(1/2) のような定数型の数式は不定元とは思われません。
第 2 引数が指定されていると、返される値は、expr の部分式で型が typename のものをすべて含む集合になります。その集合は、引数が 1 個の場合に不定元と思われなかった部分式も含むことになります。
例
indets( x*y + z/x );
e := x^(1/2) + exp(x^2) + f(9): indets(e);
indets(e,function);
数式から関数 f と g に関わる表現をすべて抜き出すには、次のようにします。
indets(e, 'specfunc(anything, {f,g})');
参照
type[structure]
Download Help Document