Method | Description | |
---|---|---|
ColumnAverage ( Matrix |
Compute the average value of the entries in a column of a matrix
|
|
ColumnInitNormal ( Matrix |
Initializes one column of a double matrix with normal distributed (Gaussian) noise
|
|
FrobeniusNorm ( Matrix |
Compute the Frobenius norm (square root of the sum of squared entries) of a matrix See http://en.wikipedia.org/wiki/Matrix_norm |
|
Inc ( Matrix |
Increment the elements in one matrix by the ones in another
|
|
Inc ( Matrix |
Increments the specified matrix element by a double value
|
|
InitNormal ( Matrix |
Initializes a double matrix with normal distributed (Gaussian) noise
|
|
Multiply ( Matrix |
Multiply all entries of a matrix with a scalar
|
|
RowAverage ( Matrix |
Compute the average value of the entries in a row of a matrix
|
|
RowDifference ( Matrix |
Compute the difference vector between two rows of two matrices
|
|
RowInitNormal ( Matrix |
Initializes one row of a double matrix with normal distributed (Gaussian) noise
|
|
RowScalarProduct ( Matrix |
Compute the scalar product between a vector and a row of the matrix
|
|
RowScalarProduct ( Matrix |
Compute the scalar product between two rows of two matrices
|
|
RowScalarProductWithRowDifference ( Matrix |
Compute the scalar product of a matrix row with the difference vector of two other matrix rows
|
public static ColumnAverage ( Matrix |
||
matrix | Matrix |
the matrix |
col | int | the column ID |
return | double |
public static ColumnInitNormal ( Matrix |
||
matrix | Matrix |
the matrix to initialize |
mean | double | the mean of the normal distribution drawn from |
stdev | double | the standard deviation of the normal distribution |
column | int | the column to be initialized |
return | void |
public static FrobeniusNorm ( Matrix |
||
matrix | Matrix |
the matrix |
return | double |
public static Inc ( Matrix |
||
matrix1 | Matrix |
the matrix to be incremented |
matrix2 | Matrix |
the other matrix |
return | void |
public static Inc ( Matrix |
||
matrix | Matrix |
The matrix. |
i | int | the row |
j | int | the column |
v | double | the value |
return | void |
public static InitNormal ( Matrix |
||
matrix | Matrix |
the matrix to initialize |
mean | double | the mean of the normal distribution drawn from |
stdev | double | the standard deviation of the normal distribution |
return | void |
public static Multiply ( Matrix |
||
matrix | Matrix |
the matrix |
d | double | the number to multiply with |
return | void |
public static RowAverage ( Matrix |
||
matrix | Matrix |
the matrix |
row | int | the row ID |
return | double |
public static RowDifference ( Matrix |
||
matrix1 | Matrix |
the first matrix |
i | int | the first row ID |
matrix2 | Matrix |
the second matrix |
j | int | the second row ID |
return | IList |
public static RowInitNormal ( Matrix |
||
matrix | Matrix |
the matrix to initialize |
mean | double | the mean of the normal distribution drawn from |
stdev | double | the standard deviation of the normal distribution |
row | int | the row to be initialized |
return | void |
public static RowScalarProduct ( Matrix |
||
matrix | Matrix |
the matrix |
i | int | the row ID |
vector | IList |
the numeric vector |
return | double |
public static RowScalarProduct ( Matrix |
||
matrix1 | Matrix |
the first matrix |
i | int | the first row ID |
matrix2 | Matrix |
the second matrix |
j | int | the second row ID |
return | double |
public static RowScalarProductWithRowDifference ( Matrix |
||
matrix1 | Matrix |
the first matrix |
i | int | the first row ID |
matrix2 | Matrix |
the second matrix |
j | int | the second row ID |
matrix3 | Matrix |
the third matrix |
k | int | the third row ID |
return | double |