Learn R Programming

scidb (version 1.2-0)

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).

Usage

unbound (x) bound (x)

Arguments

x
A scidb or scidbdf object.

Value

A new sparse scidb or scidbdf object.

See Also

scidb

Examples

Run this code
## 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)

Run the code above in your browser using DataLab