View source: R/row_operations.R
row_add | R Documentation |
Add one row to a multiple of another row
row_add(A, row1, row2, a)
A |
The matrix of which to add multiple of one row to another |
row1 |
The row to be modified |
row2 |
The row to be multiplied and added to row1 |
a |
The number to multiply by row 2 |
The matrix A where row1 is added to a times row 2
A <- diag(3) row_add(A, 2, 3, -2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.