Nothing
      suppressPackageStartupMessages(library(kazaam))
if (comm.rank() == 0){
  x = matrix(1:30, 10)
} else {
  x = NULL
}
tester = function(x, i, j)
{
  if (comm.rank() == 0)
    x_true = x[, j, drop=FALSE]
  dx = expand(x)
  x_test = collapse(dx[, j])
  comm.print(all.equal(x_true, x_test))
}
tester(x, j=-1)
tester(x, j=c(-1, -3))
tester(x, j=2)
tester(x, j=c(1, 3))
tester(x, j=c(F, F, F))
tester(x, j=c(T, F, T))
tester = function(x, i, j, value)
{
  if (comm.rank() == 0)
  {
    x_true = x
    x_true[, j] <- value
  }
  dx = expand(x)
  ### some care is needed here for reasons I don't entirely understand
  x_test = dx
  dx[, j] <- value
  x_test = collapse(dx)
  comm.print(all.equal(x_true, x_test))
}
tester(x, j=-1, value=1)
tester(x, j=1, value=1)
tester(x, j=c(1, 3), value=1)
tester(x, j=c(-1, -3), value=1)
### [<-
if (comm.rank() == 0){
  m = 10
  x = matrix(1:20, m)
  y = matrix(1:30, m)
  z = matrix(1:10, m)
  c = cbind(x, y, z)
} else {
  x = NULL
  y = NULL
  z = NULL
}
dx = expand(x)
dy = expand(y)
dz = expand(z)
dc = cbind(dx, dy, dz)
c_test = collapse(dc)
comm.print(all.equal(c, c_test))
finalize()
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.