- descending(double, double) - Method in class com.jom.DoubleMatrixND
-
Fills the current array with descending numbers (in the order of the linear indexes)
- DoubleMatrixND - Class in com.jom
-
This class implements the functionality to handle an array of doubles of an arbitrary number of dimensions.
- DoubleMatrixND(double) - Constructor for class com.jom.DoubleMatrixND
-
Creates a 1x1 dense array with the given value.
- DoubleMatrixND(double[][]) - Constructor for class com.jom.DoubleMatrixND
-
Creates a 2D dense array, with the same size as value, and initializes with the data in values
- DoubleMatrixND(double[], String) - Constructor for class com.jom.DoubleMatrixND
-
Creates a row or column (1xN, or Nx1) array, dense, with the given values
- DoubleMatrixND(Collection<? extends Number>, String) - Constructor for class com.jom.DoubleMatrixND
-
Creates a row or column (1xN, or Nx1) array, dense, with the given values
- DoubleMatrixND(double[][], String) - Constructor for class com.jom.DoubleMatrixND
-
Creates a 2D array of the appropriated type, with the same size as value, and initializes with the data in values
- DoubleMatrixND(double[][][]) - Constructor for class com.jom.DoubleMatrixND
-
Creates a 3D dense array, with the same size as value, and initializes with the data in values
- DoubleMatrixND(double[][][], String) - Constructor for class com.jom.DoubleMatrixND
-
Creates a 3D array of the appropriated type, with the same size as value, and initializes with the data in values
- DoubleMatrixND(double[][][][]) - Constructor for class com.jom.DoubleMatrixND
-
Creates a 4D dense array, with the same size as value, and initializes with the data in values
- DoubleMatrixND(double[][][][], String) - Constructor for class com.jom.DoubleMatrixND
-
Creates a 4D array of the appropriated type, with the same size as value, and initializes with the data in values
- DoubleMatrixND(DoubleMatrix2D) - Constructor for class com.jom.DoubleMatrixND
-
Creates a 2D array of the same type (sparse, dense) as values, and also with the same size and data
- DoubleMatrixND(DoubleMatrix3D) - Constructor for class com.jom.DoubleMatrixND
-
Creates a 3D array of the same type (sparse, dense) as values, and also with the same size and data
- DoubleMatrixND(int[]) - Constructor for class com.jom.DoubleMatrixND
-
Creates a dense empty array of the given size, initialized to zeros
- DoubleMatrixND(int[], double) - Constructor for class com.jom.DoubleMatrixND
-
Creates a dense array of the given size, initialized to value
- DoubleMatrixND(int[], double, String) - Constructor for class com.jom.DoubleMatrixND
-
Creates an array of the given size and type.
- DoubleMatrixND(int[], double[]) - Constructor for class com.jom.DoubleMatrixND
-
Creates a dense array of the given size, using values as initializing data. values must be a vector of as many elements as the number of
cells in the array (product of the numbers in size parameter). i-th index in values vector is put in the array position of i-th linear index.
- DoubleMatrixND(int[], double[], String) - Constructor for class com.jom.DoubleMatrixND
-
Creates an array of the given size and type, using values as initializing data. values must be a vector of as many elements as the number of
cells in the array (product of the numbers in size parameter). i-th index in values vector is put in the array position of i-th linear index
.
- DoubleMatrixND(int[], DoubleMatrix1D) - Constructor for class com.jom.DoubleMatrixND
-
Creates an array of the given size and the same type as values, using values as initializing data. values must have as many elements as the
number of cells in the array (product of the numbers in size parameter). i-th index in values vector is put in the array position of i-th
linear index.
- DoubleMatrixND(int[], int[]) - Constructor for class com.jom.DoubleMatrixND
-
Creates a dense array of the given size, using values as initializing data, previously casted to double. values must be a vector of as many
elements as the number of cells in the array (product of the numbers in size parameter). i-th index in values vector is put in the array
position of i-th linear index.
- DoubleMatrixND(int[], int[], String) - Constructor for class com.jom.DoubleMatrixND
-
Creates an array of the given size and type, using values as initializing data, previously casted to double. values must be a vector of as
many elements as the number of cells in the array (product of the numbers in size parameter). i-th index in values vector is put in the array
position of i-th linear index.
- DoubleMatrixND(int[], String) - Constructor for class com.jom.DoubleMatrixND
-
Creates an empty array of the given size and type, initialized to zeros