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>
|