View source: R/row_operations.R
is_valid_row | R Documentation |
Check if the row is valid for the matrix A
is_valid_row(A, row)
A |
The matrix A |
row |
The row to check if it is valid |
is_valid_row()
returns TRUE if row
is a valid row for A
and FALSE
otherwise
A <- diag(4) # expect TRUE is_valid_row(A, 3) # expect FALSE is_valid_row(A, 5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.