flopscope.numpy.sign
fnp.sign(*args, **kwargs)[flopscope source][numpy source]
Returns an element-wise indication of the sign of a number.
Adapted from NumPy docs np.sign
Element-wise sign function.
The sign function returns -1 if x < 0, 0 if x==0, 1 if x > 0. nan
is returned for nan inputs.
For complex inputs, the sign function returns x / abs(x), the
generalization of the above (and 0 if x==0).
Parameters
- x:array_like
Input values.
- out:ndarray, None, or tuple of ndarray and None, optional
A location into which the result is stored. If provided, it must have a shape that the inputs broadcast to. If not provided or None, a freshly-allocated array is returned. A tuple (possible only as a keyword argument) must have length equal to the number of outputs.
- where:array_like, optional
This condition is broadcast over the input. At locations where the condition is True, the
outarray will be set to the ufunc result. Elsewhere, theoutarray will retain its original value. Note that if an uninitializedoutarray is created via the defaultout=None, locations within it where the condition is False will remain uninitialized.- **kwargs
For other keyword-only arguments, see the ufunc docs.
Returns
- y:ndarray
The sign of
x. This is a scalar ifxis a scalar.
Notes
There is more than one definition of sign in common use for complex
numbers. The definition used here, , is the more common
and useful one, but is different from the one used in numpy prior to
version 2.0, , which is equivalent to
sign(x.real) + 0j if x.real != 0 else sign(x.imag) + 0j.
Examples
>>> import flopscope.numpy as fnp
>>> flops.sign([-5., 4.5])
array([-1., 1.])
>>> flops.sign(0)
0
>>> flops.sign([3-4j, 8j])
array([0.6-0.8j, 0. +1.j ])