powered by
This function adds an edge between two points to a grid.
add.Edges(grid,point.a, point.b)
The grid with new edge included.
A grid to which the edge should be added.
A point in a grid given by its row and column.
Maximilian Lange, Sven Lautenbach
##initialize data m <- matrix(0,10,10) point.a <- c(5,8) point.b <- c(10,3) ##calculate the distance of the two points m <- add.Edges(m,point.a,point.b) image(m)
Run the code above in your browser using DataLab