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
indices - indices of a table or array
entries - entries of a table or array
Calling Sequence
indices(t)
indices(t,'nolist')
indices(t,'pairs')
entries(t)
entries(t,'nolist')
entries(t,'pairs')
Parameters
t
-
table or Array
nolist
(optional) literal symbol
pairs
Description
The indices and entries functions return sequences of the indices (or keys) and the entries respectively of the table or Array t corresponding to the entries that are explicitly stored.
The result returned is a sequence of lists in an apparently arbitrary order which cannot be controlled by the user. However, there is a one-to-one correspondence between the result of indices and entries.
If the 'nolist' option is used the result returned will be a simple sequence without lists. This is useful for tables where every index or entry is a single object. When 'nolist' is used on a table with expression sequence indices or entries, the pairings may be difficult to deduce in the result.
If the 'pairs' option is used the result returned will be a sequence of index = entry pairs. Since the equation form can represent sequences in either the index or entry part of the equation, neither each side nor the whole equation is wrapped in a list.
Compatibility
The pairs option was introduced in Maple 15.
For more information on Maple 15 changes, see Updates in Maple 15.
Thread Safety
The indices and entries commands are thread-safe as of Maple 15.
For more information on thread safety, see index/threadsafe.
Examples
See Also
Array, Matrix, op, table
Download Help Document