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
type/function - check for a function
Calling Sequence
type(expr, function)
type(expr, function(vtype))
Parameters
expr
-
any expression
vtype
type
Description
The call type(expr, function) checks if expr is of the form name(args), where args is an expression sequence of zero or more items. Expressions of type function represent function calls. For more information, see function.
A mathematical "function" in Maple can be defined using a functional operator. Use these to define a function of a single variable, a multivariate function, or a vector function.
Note that in Maple it is the procedure type, rather than function type that corresponds to what you think of as a "mathematical function".
If the parameter vtype is given, then it also checks that each argument is of type vtype.
A "function" can also be something written in infix notation, for example,
type(a &q b, function);
This does not include the infix operators +, -, *, ^, ||, =, <, >, <=, >=, <>, .., ::, `and`, `implies`, `or`, and `xor`, but it does include @, @@, ., $, mod, union, intersect, minus, subset, &*, and all other operators starting with &.
Examples
See Also
function, functional operators, type, type/applied, type/evenfunc, type/oddfunc, type/procedure, type/structured
Download Help Document