shift.left | R Documentation |
This function returns a matrix that has been shifted n columns to the left filling the subsqeuent columns with the given fill value
shift.left(A, cols = 1, fill = 0)
A |
a matrix |
cols |
integer number of columns to be shifted to the left |
fill |
the fill value which as as a default zero |
A matrix.
If the argument A is not a numeric matrix, then the function presents an error message and stops. If the argument cols is not a positive integer, then the function presents an error message and stops.
Frederick Novomestky fnovomes@poly.edu
A <- matrix( seq( 1, 12, 1 ), nrow=3, byrow=TRUE ) shift.left( A, 1 ) shift.left( A, 2 )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.