powered by
Checks that the input is a square matrix.
assert_is_square_matrix(x, severity = getOption("assertive.severity", "stop"))is_square_matrix(x, .xname = get_name_in_parent(x))
is_square_matrix(x, .xname = get_name_in_parent(x))
Input to check.
How severe should the consequences of the assertion be? Either "stop", "warning", "message", or "none".
"stop"
"warning"
"message"
"none"
Not intended to be used directly.
TRUE if the input is all zeroes (after coercion to be a matrix).
TRUE
# NOT RUN { is_square_matrix(matrix(1:9, nrow = 3)) is_square_matrix(matrix(1:12, nrow = 3)) # }
Run the code above in your browser using DataLab