jax.numpy.issubsctypeΒΆ
-
jax.numpy.issubsctype(arg1, arg2)ΒΆ Determine if the first argument is a subclass of the second argument.
- Parameters
- Returns
out β The result.
- Return type
See also
issctype,issubdtype,obj2sctypeExamples
>>> np.issubsctype('S8', str) False >>> np.issubsctype(np.array([1]), int) True >>> np.issubsctype(np.array([1]), float) False