public class Array extends Object
| Constructor and Description |
|---|
Array() |
| Modifier and Type | Method and Description |
|---|---|
static double[][] |
buildXY(double[] X,
double[] Y) |
static double[][] |
buildXY(double Xmin,
double Xmax,
double[] Y) |
static String |
cat(Object[] array) |
static String |
cat(Object[][] array) |
static String |
cat(String separator,
double[] array) |
static String |
cat(String separator,
Object[] array) |
static String |
cat(String columnsSeparator,
String rowsSeparator,
Object[][] array) |
static void |
checkColumnDimension(double[][] M,
int n) |
static void |
checkLength(double[] M,
int n) |
static void |
checkRowDimension(double[][] M,
int m) |
static double[] |
copy(double[] M) |
static double[][] |
copy(double[][] M) |
static double[] |
delete(double[] x,
int... J) |
static double[][] |
deleteColumns(double[][] x,
int... J) |
static double[][] |
deleteColumnsRange(double[][] x,
int J1,
int J2) |
static double[] |
deleteRange(double[] x,
int J1,
int J2) |
static double[][] |
deleteRows(double[][] x,
int... I) |
static double[][] |
deleteRowsRange(double[][] x,
int I1,
int I2) |
static int[] |
duplicate(int m,
int c) |
static String[] |
duplicate(int m,
String c) |
static boolean |
equals(double[] x,
double[] y) |
static double[] |
getColumnCopy(double[][][] M,
int j,
int k) |
static double[] |
getColumnCopy(double[][] M,
int j) |
static int |
getColumnDimension(double[][] M,
int i) |
static double[][] |
getColumnsCopy(double[][] M,
int... J) |
static double[][] |
getColumnsRangeCopy(double[][] M,
int j1,
int j2) |
static double[] |
getCopy(double[] M,
int... I) |
static double[] |
getRangeCopy(double[] M,
int j1,
int j2) |
static double[] |
getRowCopy(double[][] M,
int i) |
static double[][] |
getRowsCopy(double[][] M,
int... I) |
static double[][] |
getRowsRangeCopy(double[][] M,
int i1,
int i2) |
static double[][] |
getSubMatrixRangeCopy(double[][] M,
int i1,
int i2,
int j1,
int j2) |
static double[] |
increment(int m,
double begin,
double pitch) |
static double[][] |
increment(int m,
int n,
double begin,
double pitch) |
static double[] |
insert(double[] x,
int I,
double... y) |
static double[][] |
insertColumn(double[][] x,
double[] y,
int J) |
static double[][] |
insertColumns(double[][] x,
double[][] y,
int J) |
static double[][] |
insertRow(double[][] x,
double[] y,
int I) |
static double[][] |
insertRows(double[][] x,
double[][] y,
int I) |
static boolean |
isColumnDimension(double[][] M,
int n) |
static boolean |
isDouble(String s) |
static boolean |
isLength(double[] M,
int n) |
static boolean |
isRowDimension(double[][] M,
int m) |
static HashMap<String,Double> |
mapStringArray(List<String> array) |
static double |
max(double... M) |
static double[] |
max(double[][] M) |
static int |
max(int... M) |
static int |
maxIndex(double... M) |
static int[] |
maxIndex(double[][] M) |
static double[] |
merge(double[]... x) |
static double[][] |
mergeColumns(double[]... x) |
static double[][] |
mergeRows(double[]... x) |
static double |
min(double... M) |
static double[] |
min(double[][] M) |
static int |
min(int... M) |
static int |
minIndex(double... M) |
static int[] |
minIndex(double[][] M) |
static double[] |
one(int m) |
static double[] |
one(int m,
double c) |
static double[][] |
one(int m,
int n) |
static double[][] |
one(int m,
int n,
double c) |
static HashMap<Double,String> |
reverseStringMap(HashMap<String,Double> map) |
static void |
throwError(String msg) |
static String |
toString(double[]... v) |
static String |
toString(HashMap hash) |
static String |
toString(int[]... v) |
public static boolean equals(double[] x,
double[] y)
public static boolean isDouble(String s)
public static int[] duplicate(int m,
int c)
public static double[][] one(int m,
int n)
public static double[][] one(int m,
int n,
double c)
public static double[] one(int m)
public static double[] one(int m,
double c)
public static double[][] increment(int m,
int n,
double begin,
double pitch)
public static double[] increment(int m,
double begin,
double pitch)
public static double[] copy(double[] M)
public static double[][] copy(double[][] M)
public static double[][] getSubMatrixRangeCopy(double[][] M,
int i1,
int i2,
int j1,
int j2)
public static double[][] getColumnsRangeCopy(double[][] M,
int j1,
int j2)
public static double[][] getColumnsCopy(double[][] M,
int... J)
public static double[] getColumnCopy(double[][] M,
int j)
public static double[] getColumnCopy(double[][][] M,
int j,
int k)
public static double[][] getRowsCopy(double[][] M,
int... I)
public static double[] getRowCopy(double[][] M,
int i)
public static double[][] getRowsRangeCopy(double[][] M,
int i1,
int i2)
public static double[] getRangeCopy(double[] M,
int j1,
int j2)
public static double[] getCopy(double[] M,
int... I)
public static int getColumnDimension(double[][] M,
int i)
public static double[][] mergeRows(double[]... x)
public static double[][] mergeColumns(double[]... x)
public static double[] merge(double[]... x)
public static double[][] insertColumns(double[][] x,
double[][] y,
int J)
public static double[][] insertColumn(double[][] x,
double[] y,
int J)
public static double[][] insertRows(double[][] x,
double[][] y,
int I)
public static double[][] insertRow(double[][] x,
double[] y,
int I)
public static double[] insert(double[] x,
int I,
double... y)
public static double[][] deleteColumnsRange(double[][] x,
int J1,
int J2)
public static double[][] deleteColumns(double[][] x,
int... J)
public static double[][] deleteRowsRange(double[][] x,
int I1,
int I2)
public static double[][] deleteRows(double[][] x,
int... I)
public static double[] deleteRange(double[] x,
int J1,
int J2)
public static double[] delete(double[] x,
int... J)
public static double[][] buildXY(double Xmin,
double Xmax,
double[] Y)
public static double[][] buildXY(double[] X,
double[] Y)
public static double[] min(double[][] M)
public static int min(int... M)
public static int max(int... M)
public static double min(double... M)
public static double[] max(double[][] M)
public static double max(double... M)
public static int[] minIndex(double[][] M)
public static int minIndex(double... M)
public static int[] maxIndex(double[][] M)
public static int maxIndex(double... M)
public static String toString(double[]... v)
public static String toString(int[]... v)
public static void throwError(String msg)
public static void checkColumnDimension(double[][] M,
int n)
public static boolean isColumnDimension(double[][] M,
int n)
public static void checkRowDimension(double[][] M,
int m)
public static boolean isRowDimension(double[][] M,
int m)
public static void checkLength(double[] M,
int n)
public static boolean isLength(double[] M,
int n)
Copyright © 2015. All rights reserved.