powered by
This functions allows to set multiple elements of a matrix instead of using annoying step-by-step assignment by mat[1,2] <- 2 mat[2,3] <- 0.5 etc.
set_values(mat, ...)sv(mat, ...)
sv(mat, ...)
a matrix object
formulae; left hand values should be two-element interger vectors and right-hand: a single-value numeric
matrix
# NOT RUN { mat <- matrix(0, 4, 5) set_values(mat, c(1,1) ~ 5, c(3, 4) ~ 0.3) # }
Run the code above in your browser using DataLab