powered by
Apply a function over specified array axes.
apply_axes(x, axes, fun, ...)
array.
an array.
a vector of axes to apply fun over.
function to be applied.
optional arguments to fun.
z <- array(1:1000, dim = c(10, 10, 10)) a <- apply_axes(z, 3, fft) a[1,1,] == fft(z[1,1,]) a <- apply_axes(z, 3, sum) a[1,1,] == sum(z[1,1,])
Run the code above in your browser using DataLab