powered by
This function returns a matrix where the argument as been shifted up the given number of rows filling the bottom rows with the given fill value.
shift.up(A, rows = 1, fill = 0)
A matrix.
a matrix
integer number of rows
fill value which as the default value of zero
Frederick Novomestky fnovomes@poly.edu
A <- matrix( seq( 1, 16, 1 ), nrow=4, byrow=TRUE ) shift.up( A, 1 ) shift.up( A, 3 )
Run the code above in your browser using DataLab