Skip to content

Commit 5e50934

Browse files
shaloorgommers
authored andcommitted
content update for arraycomputing ref numpy#43
1 parent 8486aa5 commit 5e50934

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

content/en/arraycomputing.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,17 @@ title: Array Computing
33
sidebar: false
44
---
55

6-
TODO
6+
Arrays are a type of data structures that are used to organize vast amounts of data such that related set of values can be easily sorted, searched, mathematically manipulated and transformed easily and quickly.
7+
8+
{{< highlight md >}}
9+
Array computing has become synonymous with large scale data manipulation.
10+
{{< /highlight >}}
11+
12+
**Array computing** is unique as it involves operating on the data array at once. What this means is that any array operation applies to an entire set of values in one shot. This vectorized approach provides speed and simplicity by enabling programmers to code and operate on aggregates of data, without having to use loops of individual scalar operations. It is the foundation of statistical, mathematical, scientific computing and modern day data science analytics. Some real life examples of application of array computing include data visualization, digital signal processing, image processing, bioinformatics, machine learning and AI.
13+
14+
{{< highlight md >}}
15+
The language of choice for data analytics, machine learning and productive numerical computing is Python.
16+
{{< /highlight >}}
17+
18+
**Num**erical **Py**thon or NumPy is its de-facto standard Python programming language library that supports large, multi-dimensional arrays and matrices, and comes with a vast collection of high-level mathematical functions to operate on these arrays.
19+

0 commit comments

Comments
 (0)