set.submatrix {matrixcalc}R Documentation

Store matrix inside another matrix

Description

This function returns a matrix which is a copy of matrix x into which the contents of matrix y have been inserted to the right and below the given row and column.

Usage

set.submatrix(x, y, row, col)

Arguments

x

a matrix

y

a matrix

row

an integer row number

col

an integer column number

Value

A matrix.

Note

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.

Author(s)

Frederick Novomestky fnovomes@poly.edu

See Also

is.numeric.matrix

Examples

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 )

[Package matrixcalc version 1.0-1 Index]