array

[uh-rey] /əˈreɪ/
verb (used with object)
1.
to place in proper or desired order; marshal:
Napoleon arrayed his troops for battle.
2.
to clothe with garments, especially of an ornamental kind; dress up; deck out:
She arrayed herself in furs and diamonds.
noun
3.
order or arrangement, as of troops drawn up for battle.
4.
military force, especially a body of troops.
5.
a large and impressive grouping or organization of things:
He couldn't dismiss the array of facts.
6.
regular order or arrangement; series:
an array of figures.
7.
a large group, number, or quantity of people or things:
an impressive array of scholars; an imposing array of books.
8.
attire; dress:
in fine array.
9.
an arrangement of interrelated objects or items of equipment for accomplishing a particular task:
thousands of solar cells in one vast array.
10.
Mathematics, Statistics.
  1. an arrangement of a series of terms according to value, as from largest to smallest.
  2. an arrangement of a series of terms in some geometric pattern, as in a matrix.
11.
Computers. a block of related data elements, each of which is usually identified by one or more subscripts.
12.
Radio. antenna array.
Origin
1250-1300; Middle English arrayen < Anglo-French arayer, Old French are(y)er < Germanic; compare Old English ārǣdan to prepare, equivalent to ā- a-3 + ræde ready
Related forms
arrayer, noun
unarrayed, adjective
well-arrayed, adjective
Synonyms
1. arrange, range, order, dispose. 2. apparel, dress, attire; ornament, adorn, decorate. 3. disposition. 5. show, exhibit, exhibition. 8. raiment.
Examples from the web for array
  • Investigators will install a data collection system in participants' cars that measures an array of driver activity.
  • The array of stock rating tools can be overwhelming as investors try to get a handle on how to invest their money.
  • The show will feature an array of impressive guests and exhibitors.
  • Among the array sold at nurseries and garden centers, the following kinds germinate readily.
  • As a result, this mountain chain holds a dazzling array of rare plants and animals.
  • Mustaches, like snowflakes, come in an endless array of shapes and sizes.
  • Over the last decade, the umbrella of student affairs widened to cover a vast array of programs and services.
  • Basil has a bright, complex, and slightly anise flavor that enhances a wide array of summer fruits and vegetables.
  • Beneath the hype, predictions and paranoia of electronic publishing lie millions of dollars and an endless array of visions.
  • What an amazing array of colors, shapes, sizes.
British Dictionary definitions for array

array

/əˈreɪ/
noun
1.
an impressive display or collection
2.
an orderly or regular arrangement, esp of troops in battle order
3.
(poetic) rich clothing; apparel
4.
(maths) a sequence of numbers or symbols in a specified order
5.
(maths) a set of numbers or symbols arranged in rows and columns, as in a determinant or matrix
6.
(electronics) an arrangement of aerials spaced to give desired directional characteristics, used esp in radar
7.
(law) a panel of jurors
8.
the arming of military forces
9.
(computing) a regular data structure in which individual elements may be located by reference to one or more integer index variables, the number of such indices being the number of dimensions in the array
verb (transitive)
10.
to dress in rich attire; adorn
11.
to arrange in order (esp troops for battle); marshal
12.
(law) to draw up (a panel of jurors)
Derived Forms
arrayal, noun
Word Origin
C13: from Old French aroi arrangement, from arayer to arrange, of Germanic origin; compare Old English arǣdan to make ready
Word Origin and History for array
v.

early 14c., from stem of Old French areer "to put in order," from Vulgar Latin *ar-redare (source of Italian arredare), from Latin ad- "to" (see ad-) + Frankish *ræd- "ready" or some cognate Germanic source, from Proto-Germanic *raidjan "to place in order" (cf. Gothic garadis, Old English geræde "ready;" see ready (adj.)). Related: Arrayed; arraying.

n.

mid-14c., "order, arrangement," from Anglo-French arrai, Old French aroi, from areer (see array (v.)).

array in Science
array
  (ə-rā')   
  1. Mathematics A rectangular arrangement of quantities in rows and columns, as in a matrix.

  2. Numerical data ordered in a linear fashion, by magnitude.


array in Technology

1. A collection of identically typed data items distinguished by their indices (or "subscripts"). The number of dimensions an array can have depends on the language but is usually unlimited.
An array is a kind of aggregate data type. A single ordinary variable (a "scalar") could be considered as a zero-dimensional array. A one-dimensional array is also known as a "vector".
A reference to an array element is written something like A[i,j,k] where A is the array name and i, j and k are the indices. The C language is peculiar in that each index is written in separate brackets, e.g. A[i][j][k]. This expresses the fact that, in C, an N-dimensional array is actually a vector, each of whose elements is an N-1 dimensional array.
Elements of an array are usually stored contiguously. Languages differ as to whether the leftmost or rightmost index varies most rapidly, i.e. whether each row is stored contiguously or each column (for a 2D array).
Arrays are appropriate for storing data which must be accessed in an unpredictable order, in contrast to lists which are best when accessed sequentially. Array indices are integers, usually natural numbers, whereas the elements of an associative array are identified by strings.
2. A processor array, not to be confused with an array processor.
(2007-10-12)