matrixcalc (version 1.0-3)

shift.right: Shift matrix n columns to the right

Description

This function returns a matrix that has been shifted to the right n columns filling the previous columns with the given fill value.

Usage

shift.right(A, cols = 1, fill = 0)

Arguments

A

a matrix

cols

integer number of columns to be shifted to the right

fill

the fill which as default value zero

Value

A matrix.

Examples

Run this code
# NOT RUN {
A <- matrix( seq( 1, 16, 1 ), nrow=4, byrow=TRUE )
shift.right( A, 1 )
shift.right( A, 2 )
# }

Run the code above in your browser using DataLab