move: Move construct or element in grid to the left, right, up or...

Description Usage Arguments Details Value Author(s) Examples

Description

Move construct or element in grid to the left, right, up or down.

Usage

1
2
3
4
left(x, pos=0)
right(x, pos=0)
up(x, pos=0)
down(x, pos=0)

Arguments

x

repgrid object.

pos

Row (column) number of construct (element) to be moved. The default is 0. For indexes outside the range of the grid no moving is done.

Details

left: Move construct or element in grid to the left, right, up or down.

right: Move element in grid to the right.

up: Move construct in grid upwards.

down: Move construct in grid downwards.

Value

left: repgrid object.

right: repgrid object

up: repgrid object

down: repgrid object

Author(s)

Mark Heckmann

Examples

1
2
3
4
5
6
7
8
9
## Not run: 

x <- randomGrid()
left(x, 2)    # 2nd element to the left
right(x, 1)   # 1st element to the right
up(x, 2)      # 2nd construct upwards
down(x, 1)    # 1st construct downwards

## End(Not run)

OpenRepGrid documentation built on May 2, 2019, 4:54 p.m.