Type Definitions
-
Connectivity
-
An array of positive integers.
-
ConnectivityList
-
A
module:types.Matrixof positive integers. Each row of the matrix is amodule:types.Connectivity. -
Matrix
-
A 2D js array of numbers that: 1) has non-zero number of rows. (mat.length > 0). 2) has consistent non-zero column length. (mat[0].length === mat[1].length ... === mat[m-1].length > 0)
-
Vector
-
A 1D js array of numbers that has non-zero length.