If x
is an integer dtype array, you'll get this casting
error:
In [1]: x = np.arange(1,4)
In [2]: x /= 10
Traceback (most recent call last):
Input In [2] in <cell line: 1>
x /= 10
UFuncTypeError: Cannot cast ufunc 'true_divide' output from dtype('float64') to dtype('int64') with casting rule 'same_kind'
No such problems if the array if floats:
In [3]: y = x.astype(float)
In [4]: y /= 10
In [5]: y
Out[5]: array([0.1, 0.2, 0.3])
*= 0.1
would also raise a casting error. Anything that tries to put a float in an int array. Assignments like x[:] = 1.1
silently cast the floats to integer - that's a more frequent cause of puzzlement.