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
Indexing Functions (for tables and arrays)
Calling Sequence
table(indexfcn, indexfcn...)
array(indexfcn, indexfcn...)
Description
The indexfcn arguments to table or array are a sequence of named indexing methods used when assigning to or evaluating entries in the table or array. If no indexing methods are specified, then Maple's ordinary indexing is used.
All indexing is done through the first indexing method specified for the table or array. The procedure index/method is invoked with two or three parameters. If simply evaluating the table entry, then only two parameters are passed. The first is a list containing the indices to be used and the second is a named table using the remaining indexing methods. In this way, later indexing methods modify the behavior of earlier methods. If the entry is being assigned to, a third argument, a list of the values being assigned, is passed to the indexing function.
The following names are known as built-in or library-defined indexing functions: symmetric, antisymmetric, sparse, diagonal, identity, and exception.
If indexfcn is not a built-in indexing function, cat(index,"/",indexfcn) is used as the name of the procedure that defines the indexing function.
The example below constructs an indexing function that returns infinity for all unassigned entries in the table (similar to the sparse indexing function which returns zero). The second example demonstrates the chaining of multiple indexing functions to get the desired effect.
Note: The command array has been superseded by Array. Information on indexing functions for Arrays can be found at rtable_indexfcn.
Examples
`index/infinity` := proc(Idx::list,Tbl::table,Entry::list) if (nargs = 2) then if assigned(Tbl[op(Idx)]) then Tbl[op(Idx)]; else infinity; end if; elif Entry = [infinity] then infinity; else Tbl[op(Idx)] := op(Entry); end if; end proc:
See Also
antisymmetric, diagonal, exception, identity, Indexing Functions for Arrays, Matrices, and Vectors (rtable Objects), sparse, symmetric, table
Download Help Document