Array: Difference between revisions
From HandWiki
imported>PolicyEnforcerIA attribution |
linkage |
||
| Line 1: | Line 1: | ||
An '''array''' is a systematic arrangement of similar objects, usually in rows and columns. | An '''array''' is a systematic arrangement of similar objects, usually in rows and columns. | ||
[[File:20221117-Tektronix plug-in modules 7A18 (Dual amplifier) and 7B50 (Trigger) for 7000 series oscilloscopes mod.jpg|thumb|The little push-buttons on the upper part of the right electronic device are arranged in an array with 3 columns and 4 rows. The two devices themselves form a very simple array of 2 columns and 1 row.]] | |||
Things called an array include: | Things called an array include: | ||
{{TOC right}} | {{TOC right}} | ||
| Line 11: | Line 11: | ||
== Science == | == Science == | ||
=== Astronomy === | === Astronomy === | ||
A telescope array | A telescope array is also called astronomical interferometer. The best known to the public, and a genuine tourist attraction, is the [[Astronomy:Very Large Array|Very Large Array]], in New Mexico.<ref>{{cite web|url=https://public.nrao.edu/visit/very-large-array/|title=Visit the Very Large Array|website=National Radio Astronomy Observatory|access-date=August 14, 2025}}</ref> | ||
* [[ | === Biology === | ||
* Various kinds of multiple biological arrays called [[Biology:Microarray|microarray]]s.<ref>{{Cite journal |last1=Carroll |first1=Gregory T. |last2=Wang |first2=Denong |last3=Turro |first3=Nicholas J. |last4=Koberstein |first4=Jeffrey T. |date=2008 |title=Photons to illuminate the universe of sugar diversity through bioarrays |journal=Glycoconjugate Journal |language=en |volume=25 |issue=1 |pages=5–10 |doi=10.1007/s10719-007-9052-1 |issn=0282-0080 |pmc=7088275 |pmid=17610157}}</ref> The first type of microarray was an [[Biology:Antibody microarray|antibody microarray]] invented in 1983 by Tse Wen Chang.<ref name="pmid6606681">{{cite journal |doi=10.1016/0022-1759(83)90318-6 |title=Binding of cells to matrixes of distinct antibodies coated on solid surface |year=1983 |last1=Tse-Wen Chang |journal=Journal of Immunological Methods |volume=65 |pages=217–23 |pmid=6606681 |first1=TW |issue=1–2}}</ref> and in the past 40 years, this concept has been used in many biological applications, including the [[Biology:DNA microarray|DNA microarray]], which has led to the "gene chip" industry started by Ron Davis and Pat Brown at Stanford University,<ref>{{cite journal |doi=10.1126/science.270.5235.467 |title=Quantitative Monitoring of Gene Expression Patterns with a Complementary DNA Microarray |year=1995 |last1=Schena |first1=M. |last2=Shalon |first2=D. |last3=Davis |first3=R. W. |last4=Brown |first4=P. O. |journal=Science |volume=270 |issue=5235 |pages=467–70 |pmid=7569999|bibcode=1995Sci...270..467S |s2cid=6720459 }}</ref> and [[Biology:Protein microarray|protein]] and [[Organization:Peptide microarray|Peptide microarray]]s. | |||
* Visual feature array, a model for the visual cortex | |||
* | |||
=== Computer science === | === Computer science === | ||
Generally, a collection of same type data items that can be selected by indices computed at run-time, including: | Generally, a collection of same type data items that can be selected by indices computed at run-time, including: | ||
* [[Array data structure]], an arrangement of items at equally spaced addresses in computer memory | * [[Array (data structure)]], an arrangement of items at equally spaced addresses in computer memory | ||
* [[Array data type]], used in a programming language to specify a variable that can be indexed | * [[Array (data type)]], used in a programming language to specify a variable that can be indexed | ||
* [[Associative array]], an abstract data structure model composed of key-value pairs, often implemented as a hash table or search tree | * [[Associative array]], an abstract data structure model composed of key-value pairs, often implemented as a hash table or search tree | ||
or various kinds of the above, such as: | or various kinds of the above, such as: | ||
* [[Bit array]] or bit vector | * [[Bit array]] or bit vector | ||
* [[Dynamic array]], allocated at run time | * [[Dynamic array]], allocated at run time | ||
* [[Jagged array]], | * [[Jagged array]], an array of arrays of which the member arrays can be of different lengths | ||
* [[Parallel array]] of records, with each field stored as a separate array | * [[Parallel array]] of records, with each field stored as a separate array | ||
* Sparse array, with most elements omitted, to store a sparse matrix | * Sparse array, with most elements omitted, to store a sparse matrix | ||
| Line 82: | Line 60: | ||
** [[Engineering:Land grid array|land grid array]] | ** [[Engineering:Land grid array|land grid array]] | ||
* [[Processor array]] | * [[Processor array]] | ||
* [[Programmable Array Logic]] (PAL), a systematic way to implement | * [[Programmable Array Logic]] (PAL), a systematic way to implement Boolean functions | ||
* Reconfigurable datapath array, a flexible data processing architecture | * Reconfigurable datapath array, a flexible data processing architecture | ||
* [[Systolic array]], a hardware architecture | * [[Systolic array]], a hardware architecture | ||
| Line 108: | Line 86: | ||
* ARRAY, an independent film distribution company | * ARRAY, an independent film distribution company | ||
* [[Company:Array Networks|Array Networks]], a computer networking company | * [[Company:Array Networks|Array Networks]], a computer networking company | ||
*Array Collective, a Belfast-based artist-activist collaborative project | |||
==References== | |||
{{reflist}} | |||
[[Category:Arrays| ]] | [[Category:Arrays| ]] | ||
{{Sourceattribution|Array}} | {{Sourceattribution|Array}} | ||
Latest revision as of 18:33, 23 May 2026
An array is a systematic arrangement of similar objects, usually in rows and columns.

Things called an array include:
Music
- In twelve-tone and serial composition, the presentation of simultaneous twelve-tone sets such that the sums of their horizontal segments form a succession of twelve-tone aggregates
- Array mbira, a musical instrument
- Spiral array model, a music pitch space
Science
Astronomy
A telescope array is also called astronomical interferometer. The best known to the public, and a genuine tourist attraction, is the Very Large Array, in New Mexico.[1]
Biology
- Various kinds of multiple biological arrays called microarrays.[2] The first type of microarray was an antibody microarray invented in 1983 by Tse Wen Chang.[3] and in the past 40 years, this concept has been used in many biological applications, including the DNA microarray, which has led to the "gene chip" industry started by Ron Davis and Pat Brown at Stanford University,[4] and protein and Peptide microarrays.
- Visual feature array, a model for the visual cortex
Computer science
Generally, a collection of same type data items that can be selected by indices computed at run-time, including:
- Array (data structure), an arrangement of items at equally spaced addresses in computer memory
- Array (data type), used in a programming language to specify a variable that can be indexed
- Associative array, an abstract data structure model composed of key-value pairs, often implemented as a hash table or search tree
or various kinds of the above, such as:
- Bit array or bit vector
- Dynamic array, allocated at run time
- Jagged array, an array of arrays of which the member arrays can be of different lengths
- Parallel array of records, with each field stored as a separate array
- Sparse array, with most elements omitted, to store a sparse matrix
- Variable-length array
or various related concepts:
- Array programming, using matrix algebra notation in programs (not the same as array processing)
- Array slicing, the extraction of sub-arrays of an array
or also:
- Global Arrays, a library for parallel processing
- Intel Array Visualizer, a piece of scientific graphics software
Mathematics and statistics
- A standard array in coding theory
- An array or matrix (mathematics)
- A holor
- Intersection array a concept of category theory
Technology
Computing
- Array data structure, an arrangement of data in computer memory
- Asynchronous array of simple processors
- Disk array, such as the RAID
- Gate array, including a field-programmable gate array (FPGA)
- ICL Distributed Array Processor, an array processor for the ICL
- Integrated circuit packages:
- Processor array
- Programmable Array Logic (PAL), a systematic way to implement Boolean functions
- Reconfigurable datapath array, a flexible data processing architecture
- Systolic array, a hardware architecture
- Transistor array, an integrated circuit
- Video Graphics Array (VGA), a display adapter and many variants thereof
- Wi-Fi array, a wireless networking device
Other technologies
- Antenna array
- Array gain, a telecommunications parameter
- Array processing of multichannel signals (not to be confused with array programming)
- Color filter array, placed over an imaging array
- Field emitter array, an electron source
- Halbach array, an arrangement of magnets
- Linear diode array used in image scanners
- Microphone array
- Parametric array of transducers
- Phased-array optics
- Photovoltaic array
- Staring array, an imaging sensor
- Towed array sonar
Other
- A Commission of Array, a commission for mustering a militia
- ARRAY, an independent film distribution company
- Array Networks, a computer networking company
- Array Collective, a Belfast-based artist-activist collaborative project
References
- ↑ "Visit the Very Large Array". https://public.nrao.edu/visit/very-large-array/.
- ↑ Carroll, Gregory T.; Wang, Denong; Turro, Nicholas J.; Koberstein, Jeffrey T. (2008). "Photons to illuminate the universe of sugar diversity through bioarrays" (in en). Glycoconjugate Journal 25 (1): 5–10. doi:10.1007/s10719-007-9052-1. ISSN 0282-0080. PMID 17610157.
- ↑ Tse-Wen Chang, TW (1983). "Binding of cells to matrixes of distinct antibodies coated on solid surface". Journal of Immunological Methods 65 (1–2): 217–23. doi:10.1016/0022-1759(83)90318-6. PMID 6606681.
- ↑ Schena, M.; Shalon, D.; Davis, R. W.; Brown, P. O. (1995). "Quantitative Monitoring of Gene Expression Patterns with a Complementary DNA Microarray". Science 270 (5235): 467–70. doi:10.1126/science.270.5235.467. PMID 7569999. Bibcode: 1995Sci...270..467S.
