Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
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