fill.corner.Rd
Fills one corner of a matrix with the supplied values, leaving the rest filled with a default value.
fill.corner(x,nrow,ncol,na.value=NA)
fill.corner creates an nrow by ncol matrix and fills the lower left corner with the values supplied in x. If there are more values in x than cells in the matrix, only the first nrow*ncol values will be inserted.
An nrow by ncol matrix containing the values in x.