Skip to content

Commit 55c0a81

Browse files
add support for accessor arrays
--- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na ---
1 parent d59b23c commit 55c0a81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/cumax/lib/accessors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ var isPositiveZero = require( '@stdlib/math/base/assert/is-positive-zero' );
4545
* var x = [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0 ];
4646
* var y = [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ];
4747
*
48-
* cumax( 4, toAccesorArray( x ), 2, 1, toAccessorArray( y ), 1, 0 );
48+
* cumax( 4, toAccessorArray( x ), 2, 1, toAccessorArray( y ), 1, 0 );
4949
* // y => [ 1.0, 1.0, 2.0, 4.0, 0.0, 0.0, 0.0, 0.0 ];
5050
*/
5151
function cumax( N, x, strideX, offsetX, y, strideY, offsetY ) {

0 commit comments

Comments
 (0)