Takes a multi-frame matrix and converts to a vector, with each frame being concatenated end-to-end. Each row / frame of the matrix is a time point, with each column representing a well (ordered A1, A2, ... B1, B2, ...).
.multi_frame_matrix_to_vec(mat, rowwise = TRUE)
A multi-frame matrix.
Logical, whether to concatenate the rows (default, TRUE) or the columns.
A vector, with values concatenated from the matrix.