Apply a row-wise function between two matrices with the same number of columns.
matrixFunc(X: number[][], Y: number[][], func: VectorFunction): number[][]| Name | Type | Description |
|---|---|---|
X* | number[][] | The first matrix. |
Y* | number[][] | The second matrix. |
func* | VectorFunction | The function to apply. |