powered by
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)
A matrix.
a matrix
an integer row number
an integer column number
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 )
Run the code above in your browser using DataLab