Skip to content

Commit 1e32235

Browse files
authored
fix: use correct dtype policy
Signed-off-by: Athan <[email protected]>
1 parent ff7f4bf commit 1e32235

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/stats/nanmean/lib

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/nanmean/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ var factory = require( '@stdlib/ndarray/base/unary-reduce-strided1d-dispatch-fac
3030
// VARIABLES //
3131

3232
var idtypes = dtypes( 'real_and_generic' );
33-
var odtypes = dtypes( 'real_and_generic' );
33+
var odtypes = dtypes( 'real_floating_point_and_generic' );
3434
var policies = {
35-
'output': 'same',
35+
'output': 'real_floating_point_and_generic',
3636
'casting': 'none'
3737
};
3838
var table = {

0 commit comments

Comments
 (0)