block_sum {migest} | R Documentation |
Sum over a selected block in a block matrix
Description
Returns of a sum of a block within a matrix
. This function is predominantly intended to be used within the ipf2_block
routine.
Usage
block_sum(block = NULL, m = NULL, block_id = NULL)
Arguments
block |
Numeric value of block to summed. To be matched against the matrix in |
m |
Matrix of all blocks combined. |
block_id |
Matrix of the same dimensions of |
Value
Returns a numeric value of the sum of a single block.
Author(s)
Guy J. Abel
See Also
block_matrix
, stripe_matrix
, ipf2_block
Examples
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)
[Package migest version 2.0.4 Index]