8000 And Introduction and History sections by rgommers · Pull Request #60 · data-apis/array-api · GitHub
[go: up one dir, main page]

Skip to content

And Introduction and History sections #60

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 3, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix formatting of Terms and Definitions section
Avoid each term being a separate ToC entry in the sidebar, and
make the whole section more compact.
  • Loading branch information
rgommers committed Oct 28, 2020
commit 3a64eb46186e80e79e50d0ae83c858be85a25c45
30 changes: 10 additions & 20 deletions spec/purpose_and_scope.md
Original file line number Diff line number Diff line change
Expand Up @@ -380,44 +380,34 @@ For the purposes of this specification, the following terms and definitions appl

<!-- NOTE: please keep terms in alphabetical order -->

### array

**array**:
a (usually fixed-size) multidimensional container of items of the same type and size.

### axis

**axis**:
an array dimension.

### broadcast

**broadcast**:
automatic (implicit) expansion of array dimensions to be of equal sizes without copying array data for the purpose of making arrays with different shapes have compatible shapes for element-wise operations.

### compatible

**compatible**:
two arrays whose dimensions are compatible (i.e., where the size of each dimension in one array is either equal to one or to the size of the corresponding dimension in a second array).

### element-wise

**element-wise**:
an operation performed element-by-element, in which individual array elements are considered in isolation and independently of other elements within the same array.

### matrix

**matrix**:
a two-dimensional array.

### rank

**rank**:
number of array dimensions (not to be confused with the number of linearly independent columns of a matrix).

### shape

**shape**:
a tuple of `N` non-negative integers that specify the sizes of each dimension and where `N` corresponds to the number of dimensions.

### singleton dimension

**singleton dimension**:
a dimension whose size is one.

### vector

**vector**:
a one-dimensional array.

* * *
Expand Down
0