indices
indices of a table or array
entries
entries of a table or array
Calling Sequence
Parameters
Description
Thread Safety
Examples
Compatibility
indices(t)
indices(t,options)
entries(t)
entries(t,options)
t
-
table or Array
options
(optional) optional arguments to control the output format.
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.
By default, the result returned is a sequence of lists in an apparently arbitrary order. However, there is a one-to-one correspondence between the result of indices and entries. Users can specify the 'indexorder' option to control the order of the returned elements.
indices and entries support the following optional arguments.
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.
If the 'indexorder' option is used the returned data will be ordered based on the sorted order of the indices. The indices are sorted using the same algorithm as the sort command. Users can also provide a comparison function to the 'indexorder' option.
The indices and entries commands are thread-safe as of Maple 15.
For more information on thread safety, see index/threadsafe.
t≔table⁡green=gruen,red=rot,blue=blau,black=schwarz:
indices⁡t
green,black,blue,red
entries⁡t
gruen,schwarz,blau,rot
indices⁡t,nolist
indices⁡t,pairs
green=gruen,black=schwarz,blue=blau,red=rot
indices⁡t,indexorder
black,blue,green,red
entries⁡t,indexorder
schwarz,blau,gruen,rot
indices⁡t,`=`⁡indexorder,x,y↦notStringTools:−Compare⁡x1,y1
red,green,blue,black
a≔Array⁡1,2,3,4
a≔1234
indices⁡a
1,1,2,1,1,2,2,2
entries⁡a
1,3,2,4
entries⁡a,nolist
m≔Matrix⁡3,2,2,−1,4,4,5,8
m≔2−14458
indices⁡m
1,1,2,1,3,1,1,2,2,2,3,2
entries⁡m
2,4,5,−1,4,8
entries⁡m,pairs
1,1=2,1,2=−1,2,1=4,2,2=4,3,1=5,3,2=8
The pairs option was introduced in Maple 15.
For more information on Maple 15 changes, see Updates in Maple 15.
The indices and entries commands were updated in Maple 18.
The indexorder option was introduced in Maple 18.
For more information on Maple 18 changes, see Updates in Maple 18.
See Also
Array
Matrix
op
table
Download Help Document
What kind of issue would you like to report? (Optional)