Array
construct an Array
Calling Sequence
Parameters
Options
Description
Thread Safety
Examples
Compatibility
Array(indfncs, dims, init, opts)
indfncs
-
(optional) procedure(s); indexing function(s)
dims
(optional) range(s) of integers; dimension(s)
init
(optional) Maple procedure, function, table, array, list, Array, set of equations, expression of type algebraic; initial values for the Array
opts
(optional) equations of the form keyword = value; specifies additional properties of the Array
The opts parameter is used to specify one or more additional properties of the Array. If a property is included in the calling sequence, it must be an equation of the form keyword = value. The permissible options are described in this section.
datatype=value
Specifies the datatype of the Array elements, and can be one of integer[n], float[n], double, complex[n], or any Maple type specification (such as is accepted by type() or ::).
For integer[n], n can be 1, 2, 4, or 8, indicating the number of bytes per integer. For float[n] and complex[n], the only allowable value of n is currently 8. The double datatype is the same as the float[8] datatype. The default datatype is the Maple type anything.
Note: When the initializer is an existing Array, and datatype = value is not specified, the datatype is inherited from the initializer.
storage=value
Specifies the storage of the Array. Permissible values are:
rectangular
triangular[upper]
triangular[lower]
triangular[upper, strict]
triangular[lower, strict]
Hessenberg[upper]
Hessenberg[lower]
band[b1, b2]
diagonal
sparse
sparse[upper]
sparse[lower]
empty
The default value of storage is determined by the last indexing function specified. If the initializer is an rtable (Array, Matrix, or Vector) and no storage option is included in the calling sequence, then the resulting Array will have sparse storage if the initializer has any kind of sparse storage; otherwise, the resulting Array has rectangular shape.
order=value
Specifies the internal ordering of the structure. Permissible values are C_order and Fortran_order. The default order is Fortran_order.
Note: When the initializer is an existing Array, and order is not specified, the order is inherited from the initializer.
readonly=value
Specifies whether the Array is mutable. Permissible values are true or false. If readonly=true is included in the calling sequence (or equivalently, just readonly, it specifies that the Array is immutable, in which case any attempt to modify an Array element will raise an exception.
Note: When the initializer is an existing Array, readonly is not inherited from the initializer, since a common use for copying an Array is to create a writable version of a readonly one.
attributes=[value(s)]
Specifies the attributes with which the Array is created. Anything that is a valid argument to setattribute can appear as attribute values. The default is to have no attributes.
Note: When the initializer is an existing Array, and attributes are not specified, the attributes are inherited from the initializer.
transpose=value
If transpose or transpose=true is included in the calling sequence, it specifies that the initializer is to be transposed before filling in the Array (or determining its dimensions if no dimensions were specified). In other words, the initializer is assumed to be in column-major order.
shape=value
An equation of the form shape=name or shape=list or shape=procedure specifies one or more built-in or user-defined indexing functions that determine the nonzero structure of the Array. If more than one indexing function is included, they must be entered as a list. The default shape is [] (none). For a full description and list of built-in indexing functions, see Array indexing functions.
fill=expr
Specifies the default value that unspecified Array elements are filled in with. This value must meet the same evaluation requirements as initializer values.
Note: The fill value is only used to fill those elements of the Array that are unspecified in spite of the indexing function. For instance, the fill value is not used to fill the lower triangle of an upper triangular Array. For a sparse Array, the fill value is always ignored.
Note: The transpose and fill options are only constructor options. They are not returned as part of the result of an op(4, ...) call.
The Array(..) function is the constructor for the Array data structure. Arrays are implemented as rtables and are distinct from other Maple objects such as arrays, tables, Matrices, and Vectors. Note that Array supersedes the deprecated array.
Each of the parameters in the calling sequence is optional. If no parameters are provided, an empty 0-dimensional Array is returned.
If dims and init are not specified, or if only a scalar value is specified for init, a 0-dimensional Array containing a single element is constructed.
The following sections describe permissible values for each parameter if it is included in the calling sequence.
Indexing Function(s)
Indexing functions are used to index into an Array to retrieve or store a value. An Array has zero or more indexing functions, which are specified by name when the Array is constructed. The name of an indexing functions is always of the form "index/indfnc". When specifying an indexing function indfnc in the calling sequence, only the indfnc part of the name is specified.
Note: If the initializer (see the Options section) is an existing Array, the indexing functions are not inherited.
The indexing function can be built-in or user-defined. For more information regarding indexing functions, see Array indexing functions.
Dimension(s)
The number of dimensions of an Array can range from 0 to 63. Each of the dimensions dims in the calling sequence must be specified as a range of integers.
Initializer
The init parameter specifies the initial values of the Array in one of the following formats.
list of values (in the case of a multi-dimensional Array, nested lists are used)
existing Array, Matrix, or Vector
table
set of equations of the form (indices) = value
initializer function (procedure)
string
scalar value
If the initial values are specified as a list of values or an existing Array, Matrix, or Vector, the number of dimensions of the initial values must match the bounds (if they were specified).
If the initial values are specified as a procedure, table, or set of equations, the dimensions must be specified, and the indices of the initializers must fit within those dimensions.
If a procedure is specified, that function is called for each member of a set of indices, determined by the indexing function. The function must return a value for the specified element of the Array.
Each initial value can be any Maple expression, but this expression must be able to be evaluated to a value of the datatype of the Array (see Options). For hardware floating-point Arrays, this must be a hardware floating-point number, or one of the special expressions representing undefined or +-infinity. For hardware integer Arrays, the expressions must be able to be evaluated to a machine integer. Failure to evaluate to the datatype will generate an error.
The list form of initializer for a two or more dimensional Array is specified in row-major order unless the transpose option (see Options) is specified.
If the bounds are determined from the list form of the initializer, then the bounds of each dimension are determined from the first object in that dimension. For example, for a 2-dimensional Array, the number of rows is determined by the number of sub-lists in the main list. The number of columns is determined by the number of elements in the first sub-list, and so on for higher dimensioned Arrays. If transpose is specified, then dimension determination starts with the last dimension (i.e. the number of columns is determined by the number of sub-lists in the main list, and so on).
If there are too few initializer values for a dimension, the remainder of that dimension is filled with an appropriate default for the type of Array (either an appropriate zero, the value specified by the fill option (see Options), or a value determined by the indexing functions). If there are too many initializer values, an exception is raised.
A 0-dimensional Array can be initialized by specifying a literal value (i.e. a 0-level nesting of lists). For example, Array(2) creates a 0-dimensional Array containing the single element, 2. This form can only be used if the value is of a type that cannot be confused with one of the other forms of initializer. If it is desired to initialize a 0-dimensional Array with a more complex type, the fill option should be used (e.g. Array(fill=[2, 3]) would create a 0-dimensional Array containing the single value [2, 3]).
An Array with scalar storage (see Options) is initialized in the usual way. Any form of initializer works, although the most efficient method would be a set which contains one equation, or by using the fill parameter.
When the initializer is a string, the dimension must either match the length of the string, or be omitted. Similarly, the datatype must be either explicitly specified as integer[1], or left unspecified.
After creation, it is possible to change the entries and some of the properties of the Array. See Array assignment and Array options for more information.
For additional information on accessing elements or groups of elements of a Array, see Array indexing.
Only small Arrays are displayed inline in Maple. A small Array is defined as a 1- or 2-dimensional object whose dimension(s) are in the range 1..25 (TTY version of Maple) or the range 1..10 (GUI version of Maple). Any Array whose dimension(s) are larger than this size is displayed by using a placeholder. For information on how to view the contents of a placeholder, see structuredview.
You can display larger Arrays inline by using the interface(rtablesize=value) command, where value is an integer that represents the upper bound of the dimension range.
To change the environment so that Maple always displays rtables inline, include the interface(rtablesize=infinity) command in a Maple initialization file (see maple).
For more information, see interface.
The Array command is thread-safe as of Maple 15.
For more information on thread safety, see index/threadsafe.
Construct a simple Array with three elements:
A≔Array⁡1,2,3
A≔123
Return the bounds of each dimension of A:
ArrayDims⁡A
1..3
Return upper bound of the dimension of A:
upperbound⁡A
3
Construct another Array B:
B≔Array⁡2..3,−1..1,1,2,3,4,5,6
Evaluate the number of dimensions of B:
ArrayNumDims⁡B
2
Return the number of elements of B:
ArrayNumElems⁡B
6
An upper triangular Array C, where fill specifies the values at each entry:
C≔Array⁡triangularupper,1..3,1..4,fill=1
C≔111101110011
A symmetric two-dimensional Array:
F≔Array⁡symmetric,1..3,1..3
F≔000000000
Instead of using the fill option to assign the same value at each entry, you can opt for the following method:
F1,1≔1:
F1,2≔2:
F1,3≔3:
F
123200300
Specifying data type of each element using the datatype option.
G≔Array⁡1.2,1,4.78,datatype=float8
G≔1.200000000000001.4.78000000000000
Creating an integer[1] Array from a string.
A≔Array⁡Hello
A≔72101108108111
String⁡A
Hello
The datatype option was updated in Maple 2015.
The shape option was introduced in Maple 2024.
For more information on Maple 2024 changes, see Updates in Maple 2024.
See Also
Array assignment
Array dimensions
Array elements
Array indexing
Array indexing functions
Array number of dimensions
Array number of elements
Array options
error
interface
list
maple
Matrix
procedure
rtable
set
setattribute
structuredview
type/algebraic
upperbound
Vector
verify/Array
Download Help Document