Returns of a sum of a block within a matrix
. This function is predominantly intended to be used within the ipf2_block
routine.
block_sum(block = NULL, m = NULL, block_id = NULL)
Returns a numeric value of the sum of a single block.
Numeric value of block to summed. To be matched against the matrix in block_id
.
Matrix of all blocks combined.
Matrix of the same dimensions of m
used to identify blocks.
Guy J. Abel
block_matrix
, stripe_matrix
, ipf2_block
m <- matrix(data = 100:220, nrow = 11, ncol = 11)
b <- block_matrix(x = 1:16, b = c(2, 3, 4, 2))
block_sum(block = 1, m = m, block_id = b)
block_sum(block = 4, m = m, block_id = b)
block_sum(block = 16, m = m, block_id = b)
Run the code above in your browser using DataLab