Learn R Programming

tiledb (version 0.33.0)

tiledb_ndrectangle_dim_num: Get the number of dimensions for tiledb_ndrectangle object

Description

Get the number of dimensions for tiledb_ndrectangle object

Usage

tiledb_ndrectangle_dim_num(ndr)

Value

The number of dimentiones for the tiledb_ndrectangle

Arguments

ndr

A TileDB NDRectangle object

Examples

Run this code
# \dontshow{
ctx <- tiledb_ctx(limitTileDBCores())
# }
if (tiledb_version(TRUE) >= "2.26.0") {
  dom <- tiledb_domain(dim = tiledb_dim("d1", c(1L, 100L), type = "INT32"))
  ndr <- tiledb_ndrectangle(dom)
  tiledb_ndrectangle_dim_num(ndr)
}

Run the code above in your browser using DataLab