Unsigned integer type, compatible with C unsigned int.
tf.experimental.numpy.uint32(
*args, **kwargs
)
:Character code: 'I' :Canonical name: numpy.uintc :Alias on this platform (Linux x86_64): numpy.uint32: 32-bit unsigned integer (0 to 4_294_967_295).
| Attributes | |
|---|---|
T | Scalar attribute identical to the corresponding array attribute. Please see |
base | Scalar attribute identical to the corresponding array attribute. Please see |
data | Pointer to start of data. |
denominator | denominator of value (1) |
dtype | Get array data-descriptor. |
flags | The integer value of flags. |
flat | A 1-D view of the scalar. |
imag | The imaginary part of the scalar. |
itemsize | The length of one element in bytes. |
nbytes | The length of the scalar in bytes. |
ndim | The number of array dimensions. |
numerator | numerator of value (the value itself) |
real | The real part of the scalar. |
shape | Tuple of array dimensions. |
size | The number of elements in the gentype. |
strides | Tuple of bytes steps in each dimension. |
allall()
Scalar method identical to the corresponding array attribute.
Please see ndarray.all.
anyany()
Scalar method identical to the corresponding array attribute.
Please see ndarray.any.
argmaxargmax()
Scalar method identical to the corresponding array attribute.
Please see ndarray.argmax.
argminargmin()
Scalar method identical to the corresponding array attribute.
Please see ndarray.argmin.
argsortargsort()
Scalar method identical to the corresponding array attribute.
Please see ndarray.argsort.
astypeastype()
Scalar method identical to the corresponding array attribute.
Please see ndarray.astype.
byteswapbyteswap()
Scalar method identical to the corresponding array attribute.
Please see ndarray.byteswap.
choosechoose()
Scalar method identical to the corresponding array attribute.
Please see ndarray.choose.
clipclip()
Scalar method identical to the corresponding array attribute.
Please see ndarray.clip.
compresscompress()
Scalar method identical to the corresponding array attribute.
Please see ndarray.compress.
conjconj()
conjugateconjugate()
Scalar method identical to the corresponding array attribute.
Please see ndarray.conjugate.
copycopy()
Scalar method identical to the corresponding array attribute.
Please see ndarray.copy.
cumprodcumprod()
Scalar method identical to the corresponding array attribute.
Please see ndarray.cumprod.
cumsumcumsum()
Scalar method identical to the corresponding array attribute.
Please see ndarray.cumsum.
diagonaldiagonal()
Scalar method identical to the corresponding array attribute.
Please see ndarray.diagonal.
dumpdump()
Scalar method identical to the corresponding array attribute.
Please see ndarray.dump.
dumpsdumps()
Scalar method identical to the corresponding array attribute.
Please see ndarray.dumps.
fillfill()
Scalar method identical to the corresponding array attribute.
Please see ndarray.fill.
flattenflatten()
Scalar method identical to the corresponding array attribute.
Please see ndarray.flatten.
getfieldgetfield()
Scalar method identical to the corresponding array attribute.
Please see ndarray.getfield.
itemitem()
Scalar method identical to the corresponding array attribute.
Please see ndarray.item.
itemsetitemset()
Scalar method identical to the corresponding array attribute.
Please see ndarray.itemset.
maxmax()
Scalar method identical to the corresponding array attribute.
Please see ndarray.max.
meanmean()
Scalar method identical to the corresponding array attribute.
Please see ndarray.mean.
minmin()
Scalar method identical to the corresponding array attribute.
Please see ndarray.min.
newbyteordernewbyteorder()
newbyteorder(new_order='S', /)
Return a new dtype with a different byte order.
Changes are also made in all fields and sub-arrays of the data type.
The new_order code can be any from the following:
new_order : str, optional Byte order to force; a value from the byte order specifications above. The default value ('S') results in swapping the current byte order.
new_dtype : dtype New dtype object with the given change to the byte order.
nonzerononzero()
Scalar method identical to the corresponding array attribute.
Please see ndarray.nonzero.
prodprod()
Scalar method identical to the corresponding array attribute.
Please see ndarray.prod.
ptpptp()
Scalar method identical to the corresponding array attribute.
Please see ndarray.ptp.
putput()
Scalar method identical to the corresponding array attribute.
Please see ndarray.put.
ravelravel()
Scalar method identical to the corresponding array attribute.
Please see ndarray.ravel.
repeatrepeat()
Scalar method identical to the corresponding array attribute.
Please see ndarray.repeat.
reshapereshape()
Scalar method identical to the corresponding array attribute.
Please see ndarray.reshape.
resizeresize()
Scalar method identical to the corresponding array attribute.
Please see ndarray.resize.
roundround()
Scalar method identical to the corresponding array attribute.
Please see ndarray.round.
searchsortedsearchsorted()
Scalar method identical to the corresponding array attribute.
Please see ndarray.searchsorted.
setfieldsetfield()
Scalar method identical to the corresponding array attribute.
Please see ndarray.setfield.
setflagssetflags()
Scalar method identical to the corresponding array attribute.
Please see ndarray.setflags.
sortsort()
Scalar method identical to the corresponding array attribute.
Please see ndarray.sort.
squeezesqueeze()
Scalar method identical to the corresponding array attribute.
Please see ndarray.squeeze.
stdstd()
Scalar method identical to the corresponding array attribute.
Please see ndarray.std.
sumsum()
Scalar method identical to the corresponding array attribute.
Please see ndarray.sum.
swapaxesswapaxes()
Scalar method identical to the corresponding array attribute.
Please see ndarray.swapaxes.
taketake()
Scalar method identical to the corresponding array attribute.
Please see ndarray.take.
tobytestobytes()
tofiletofile()
Scalar method identical to the corresponding array attribute.
Please see ndarray.tofile.
tolisttolist()
Scalar method identical to the corresponding array attribute.
Please see ndarray.tolist.
tostringtostring()
Scalar method identical to the corresponding array attribute.
Please see ndarray.tostring.
tracetrace()
Scalar method identical to the corresponding array attribute.
Please see ndarray.trace.
transposetranspose()
Scalar method identical to the corresponding array attribute.
Please see ndarray.transpose.
varvar()
Scalar method identical to the corresponding array attribute.
Please see ndarray.var.
viewview()
Scalar method identical to the corresponding array attribute.
Please see ndarray.view.
__abs____abs__()
abs(self)
__add__
__add__(
value, /
)
Return self+value.
__and__
__and__(
value, /
)
Return self&value.
__array____array__()
sc.array(dtype) return 0-dim array from scalar with specified dtype
__bool____bool__()
self != 0
__eq__
__eq__(
value, /
)
Return self==value.
__floordiv__
__floordiv__(
value, /
)
Return self//value.
__ge__
__ge__(
value, /
)
Return self>=value.
__getitem__
__getitem__(
key, /
)
Return self[key].
__gt__
__gt__(
value, /
)
Return self>value.
__invert____invert__()
~self
__le__
__le__(
value, /
)
Return self<=value.
__lshift__
__lshift__(
value, /
)
Return self<<value.
__lt__
__lt__(
value, /
)
Return self<value.
__mod__
__mod__(
value, /
)
Return self%value.
__mul__
__mul__(
value, /
)
Return self*value.
__ne__
__ne__(
value, /
)
Return self!=value.
__neg____neg__()
-self
__or__
__or__(
value, /
)
Return self|value.
__pos____pos__()
+self
__pow__
__pow__(
value, mod, /
)
Return pow(self, value, mod).
__radd__
__radd__(
value, /
)
Return value+self.
__rand__
__rand__(
value, /
)
Return value&self.
__rfloordiv__
__rfloordiv__(
value, /
)
Return value//self.
__rlshift__
__rlshift__(
value, /
)
Return value<<self.
__rmod__
__rmod__(
value, /
)
Return value%self.
__rmul__
__rmul__(
value, /
)
Return value*self.
__ror__
__ror__(
value, /
)
Return value|self.
__rpow__
__rpow__(
value, mod, /
)
Return pow(value, self, mod).
__rrshift__
__rrshift__(
value, /
)
Return value>>self.
__rshift__
__rshift__(
value, /
)
Return self>>value.
__rsub__
__rsub__(
value, /
)
Return value-self.
__rtruediv__
__rtruediv__(
value, /
)
Return value/self.
__rxor__
__rxor__(
value, /
)
Return value^self.
__sub__
__sub__(
value, /
)
Return self-value.
__truediv__
__truediv__(
value, /
)
Return self/value.
__xor__
__xor__(
value, /
)
Return self^value.
© 2022 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 4.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r2.9/api_docs/python/tf/experimental/numpy/uint32