summaryrefslogtreecommitdiff
path: root/doc/release/upcoming_changes/21627.new_feature.rst
blob: f516ac96d0b6698b68c6517dc9dbc4951d9810aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
``casting`` and ``dtype`` keyword arguments for `numpy.stack`
-------------------------------------------------------------
The ``casting`` and ``dtype`` keyword arguments are now available for `numpy.stack`. 
To use them, write ``np.stack(..., dtype=None, casting='same_kind')``.


``casting`` and ``dtype`` keyword arguments for `numpy.vstack`
--------------------------------------------------------------
The ``casting`` and ``dtype`` keyword arguments are now available for `numpy.vstack`. 
To use them, write ``np.vstack(..., dtype=None, casting='same_kind')``.


``casting`` and ``dtype`` keyword arguments for `numpy.hstack`
--------------------------------------------------------------
The ``casting`` and ``dtype`` keyword arguments are now available for `numpy.hstack`. 
To use them, write ``np.hstack(..., dtype=None, casting='same_kind')``.