Utility functions for working with the jagged Double()() arrays used by the RNN matrix type.
Utils
01 Syntax
Microsoft.VisualBasic.MachineLearning.RNN.Utils
02 Methods
| Name | Overloads | Summary |
|---|---|---|
| deepCopyOf | 1 | Performs a deep copy of a 2D array of doubles. |
| arrayRows | 1 | Returns the row count of a 2D array of doubles. |
| arrayCols | 1 | Returns the column count of a 2D array of doubles. |
03 Members
deepCopyOf(
Double()())Performs a deep copy of a 2D array of doubles.
Parameters
| Name | Type | Description |
|---|---|---|
src | Double()() | The source array; |
Returns
A deep copy of src.
arrayRows(
Double()())Returns the row count of a 2D array of doubles.
Parameters
| Name | Type | Description |
|---|---|---|
array | Double()() | The array to inspect; |
Returns
The number of rows.
arrayCols(
Double()())Returns the column count of a 2D array of doubles.
Parameters
| Name | Type | Description |
|---|---|---|
array | Double()() | The array to inspect; |
Returns
The number of columns, taken from the first row.