unbound:
Return a bounded or unbounded version of a SciDB array
Description
Return a new sparse SciDB array identical to the input array but with each
dimension upper bound set to '*' (unbound) or maximum non-empty coordinate
(bound).
## Not run: # x <- build("i+j", c(10,10), type="double")# y <- unbound(x)# z <- bound(y)# # Now compare schema of x, y, and z:# schema(x)# schema(y)# schema(z)# ## End(Not run)