public final class Matrix extends Object
| Modifier and Type | Method and Description | 
|---|---|
static double[] | 
getMatrix(String name)
Get the data in a Stata matrix. 
 | 
static int | 
getMatrixCol(String name)
Get the number of columns in a Stata matrix. 
 | 
static String[] | 
getMatrixColNames(String name)
Get the column names in a Stata matrix. 
 | 
static int | 
getMatrixRow(String name)
Get the number of rows in a Stata matrix. 
 | 
static String[] | 
getMatrixRowNames(String name)
Get the row names in a Stata matrix. 
 | 
public static double[] getMatrix(String name)
name - Name of the Stata matrix.public static int getMatrixCol(String name)
name - Name of the Stata matrix.public static String[] getMatrixColNames(String name)
name - Name of the Stata matrix.public static int getMatrixRow(String name)
name - Name of the Stata matrix.