View source: R/set.submatrix.R
set.submatrix | R Documentation |
This function returns a matrix which is a copy of matrix x into which the contents of matrix y have been inserted at the given row and column.
set.submatrix(x, y, row, col)
x |
a matrix |
y |
a matrix |
row |
an integer row number |
col |
an integer column number |
A matrix.
If the argument x is not a numeric matrix, then the function presents an error message and stops. If the argument y is not a numeric matrix, then the function presents an error message and stops. If the argument row is not a positive integer, then the function presents an error message and stops. If the argument col is not a positive integer, then the function presents an error message and stops. If the target row range does not overlap with the row range of argument x, then the function presents an error message and stops. If the target col range does not overlap with the col range of argument x, then the function presents an error message and stops.
Frederick Novomestky fnovomes@poly.edu
x <- matrix( seq( 1, 16, 1 ), nrow=4, byrow=TRUE ) y <- matrix( seq( 1, 4, 1 ), nrow=2, byrow=TRUE ) z <- set.submatrix( x, y, 3, 3 )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.