@@ -25,7 +25,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">sta
2525 < div class ='fl pad1y space-right2 '>
2626 < span class ="strong "> 100% </ span >
2727 < span class ="quiet "> Statements</ span >
28- < span class ='fraction '> 45/45 </ span >
28+ < span class ='fraction '> 44/44 </ span >
2929 </ div >
3030
3131
@@ -46,7 +46,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">sta
4646 < div class ='fl pad1y space-right2 '>
4747 < span class ="strong "> 100% </ span >
4848 < span class ="quiet "> Lines</ span >
49- < span class ='fraction '> 45/45 </ span >
49+ < span class ='fraction '> 44/44 </ span >
5050 </ div >
5151
5252
@@ -107,9 +107,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">sta
107107< a name ='L42 '> </ a > < a href ='#L42 '> 42</ a >
108108< a name ='L43 '> </ a > < a href ='#L43 '> 43</ a >
109109< a name ='L44 '> </ a > < a href ='#L44 '> 44</ a >
110- < a name ='L45 '> </ a > < a href ='#L45 '> 45</ a >
111- < a name ='L46 '> </ a > < a href ='#L46 '> 46</ a > </ td > < td class ="line-coverage quiet "> < span class ="cline-any cline-yes "> 1x</ span >
112- < span class ="cline-any cline-yes "> 1x</ span >
110+ < a name ='L45 '> </ a > < a href ='#L45 '> 45</ a > </ td > < td class ="line-coverage quiet "> < span class ="cline-any cline-yes "> 1x</ span >
113111< span class ="cline-any cline-yes "> 1x</ span >
114112< span class ="cline-any cline-yes "> 1x</ span >
115113< span class ="cline-any cline-yes "> 1x</ span >
@@ -174,17 +172,16 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">sta
174172'use strict';
175173
176174/**
177- * Compute the arithmetic mean of a one-dimensional ndarray using the improved Kahan–Babuška algorithm.
175+ * Compute the arithmetic mean of an ndarray using the improved Kahan–Babuška algorithm.
178176*
179177* @module @stdlib/stats/base/ndarray/meankbn
180178*
181179* @example
182180* var ndarray = require( '@stdlib/ndarray/base/ctor' );
183- * var Float64Array = require( '@stdlib/array/float64' );
184181* var meankbn = require( '@stdlib/stats/base/ndarray/meankbn' );
185182*
186- * var buf = new Float64Array( [ 1.0, 3.0, 4.0, 2.0 ] ) ;
187- * var x = new ndarray( 'float64 ', buf , [ buf.length ], [ 1 ], 0, 'row-major' );
183+ * var xbuf = [ 1.0, 3.0, 4.0, 2.0 ];
184+ * var x = new ndarray( 'generic ', xbuf , [ 4 ], [ 1 ], 0, 'row-major' );
188185*
189186* var v = meankbn( [ x ] );
190187* // returns 2.5
@@ -205,7 +202,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">sta
205202 < div class ='footer quiet pad2 space-top1 center small '>
206203 Code coverage generated by
207204 < a href ="https://istanbul.js.org/ " target ="_blank " rel ="noopener noreferrer "> istanbul</ a >
208- at 2025-10-27T21:41:38.048Z
205+ at 2025-10-27T21:42:51.304Z
209206 </ div >
210207 < script src ="../../../../../prettify.js "> </ script >
211208 < script >
0 commit comments