11/**
22* @license Apache-2.0
33*
4- * Copyright (c) 2020 The Stdlib Authors.
4+ * Copyright (c) 2024 The Stdlib Authors.
55*
66* Licensed under the Apache License, Version 2.0 (the "License");
77* you may not use this file except in compliance with the License.
3131* @param strideX stride length
3232* @return output value
3333*/
34- double API_SUFFIX (stdlib_strided_dnanstdev )( const CBLAS_INT N , const correction , const double * X , const CBLAS_INT strideX ) {
34+ double API_SUFFIX (stdlib_strided_dnanstdev )( const CBLAS_INT N , const double correction , const double * X , const CBLAS_INT strideX ) {
3535 const CBLAS_INT ox = stdlib_strided_stride2offset ( N , strideX );
3636 return API_SUFFIX (stdlib_strided_dnanstdev_ndarray )( N , correction , X , strideX , ox );
3737}
@@ -46,6 +46,6 @@ double API_SUFFIX(stdlib_strided_dnanstdev)( const CBLAS_INT N, const correction
4646* @param offsetX starting index for X
4747* @return output value
4848*/
49- double API_SUFFIX (stdlib_strided_dnanstdev_ndarray )( const CBLAS_INT N , const double correction , double * X , const CBLAS_INT strideX , const CBLAS_INT offsetX ) {
49+ double API_SUFFIX (stdlib_strided_dnanstdev_ndarray )( const CBLAS_INT N , const double correction , const double * X , const CBLAS_INT strideX , const CBLAS_INT offsetX ) {
5050 return stdlib_strided_dnanstdevpn ( N , correction , X , strideX );
5151}
0 commit comments