powered by
Fat Matrix Diagonals
fatdiag set
fatdiag(x = 1, steps = NULL, size = NULL, nrow = NULL, ncol = NULL)fatdiag(x, steps = NULL, size = NULL, on_diagonal = TRUE) <- value
fatdiag(x, steps = NULL, size = NULL, on_diagonal = TRUE) <- value
a matrix where the dimensions are integer multiples of size or integer dividors of steps
the required number of steps (block matrices) across the diagonal
the width or height of the matrix being dropped over the diagonal of matrix x
the number of rows
the number of columns
should the operation be applied to the elements on the fat diagonal.
replacement value
fatdiag<-: the set version of fatdiag
fatdiag<-
Either steps or size is expected to be provided.
# NOT RUN { fatdiag(12, steps=3) ( m <- matrix(111, nrow=6, ncol=9) ) fatdiag(m, steps=3) <- 5 fatdiag(m, steps=3) fatdiag(12, size=4) fatdiag(12, size=c(3,4) ) # }
Run the code above in your browser using DataLab