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
hasfun - 指定した関数を持つかを判定
使い方
hasfun(e,f)
hasfun(e,f,x)
パラメータ
e - 式
f - 関数名
x - (オプション) 変数名
説明
hasfun コマンドは式 e において、関数 f を探します。 f が(関数の)名前のリストまたは集合ならば、hasfun は e において、これらの関数のどれかを探します。見つかったとき true を返し、失敗したとき false を返します。
3 番目のオプション x が指定されると、hasfun 関数は、式 e がその中に x の関数 f を含んでいるかどうか判定します。典型的な応用は、積分において非積分関数が x の特定の関数を含んでいるかどうかを判定したい場合です。
例
e := sin(x)+exp(y)+1;
hasfun(e,exp);
hasfun(e,cos);
hasfun(e,exp,y);
hasfun(e,exp,x);
hasfun(e,exp,[x,y]);
hasfun(e,{sin,cos},x);
参照
has, hastype, selectfun
Download Help Document