File: package.html

package info (click to toggle)
libsis-base-java 18.09~pre1%2Bgit20180928.45fbd31%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 1,292 kB
  • sloc: java: 9,037; ansic: 813; xml: 160; sh: 139; makefile: 37
file content (19 lines) | stat: -rw-r--r-- 710 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
     "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Multi-dimensional arrays.</title>
</head>
<body>
<p>
This package provides an implementation of multi-dimensional numerical arrays in Java. Contrary to 
the <i>array of arrays</i> representation that is built into the Java language, the classes in this 
package use one contiguous array and appropriate index operations to access the elements of the 
array.    
</p>
<p>
The number of indices (or axis') of an array is called the <i>rank</i> of the array, the set of 
extends of the array along each of its axis' are called the <i>dimensions</i> of the array.
</p>
</body>
</html>