matrixcalc (version 1.0-3)

shift.left: Shift a matrix n columns to the left

Description

This function returns a matrix that has been shifted n columns to the left filling the subsqeuent columns with the given fill value

Usage

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

Arguments

A

a matrix

cols

integer number of columns to be shifted to the left

fill

the fill value which as as a default zero

Value

A matrix.

Examples

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

Run the code above in your browser using DataCamp Workspace