set_values {matricks} | R Documentation |
Set multiple values useing one function call
Description
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.
Usage
set_values(mat, ...)
sv(mat, ...)
Arguments
mat |
a matrix object |
... |
formulae; left hand values should be two-element interger vectors and right-hand: a single-value numeric |
Value
matrix
Examples
mat <- matrix(0, 4, 5)
set_values(mat, c(1,1) ~ 5, c(3, 4) ~ 0.3)
[Package matricks version 0.8.2 Index]