The only one that won't understand what you're asking for is data.frame, as it assumes you want it to go over each column. (Although it seems like they are phasing this out in future versions).
# matrix
mean(matrix(rnorm(15),5,3))
# data.frame
mean(as.matrix(data.frame(rnorm(5),rnorm(5),rnorm(5))))
# array
mean(array(1:3, c(2,4)))
This is a good question actually, because it speaks to something that's missing from basic R-docs for ?median:
an object for which a method has been defined, or a numeric vector containing the values whose median is to be computed.
ie, what type of objects would those be. ?mean, is much more instructive.