-
tensorstore.Dim(label: str | None =
None, *, implicit_lower: bool =True, implicit_upper: bool =True) Constructs an unbounded interval
(-inf, +inf).- Parameters:¶
Examples
>>> x = ts.Dim() >>> print(x) (-inf*, +inf*) >>> x.finite False>>> x = ts.Dim("x", implicit_upper=False) >>> print(x) "x": (-inf*, +inf) >>> x.finite False