jax.numpy.issubsctype
Warning
This page was created from a pull request (#9655).
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
,obj2sctype
Examples
>>> np.issubsctype('S8', str) False >>> np.issubsctype(np.array([1]), int) True >>> np.issubsctype(np.array([1]), float) False