Skip to content

Commit f35171a

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <[email protected]>
1 parent 9981cf2 commit f35171a

File tree

1 file changed

+2
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dcumaxabs

1 file changed

+2
-1
lines changed

lib/node_modules/@stdlib/stats/base/dcumaxabs/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@ Computes the cumulative maximum absolute value of double-precision floating-poin
194194
```c
195195
const double x[] = { 1.0, 2.0, -3.0, 4.0, -5.0, 6.0, 7.0, 8.0 };
196196
double y[] = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 };
197+
197198
stdlib_strided_dcumaxabs( 4, x, 2, y, -2 );
198199
```
199200
@@ -209,7 +210,7 @@ The function accepts the following arguments:
209210
void stdlib_strided_dcumaxabs( const CBLAS_INT N, const double *X, const CBLAS_INT strideX, double *Y, const CBLAS_INT strideY );
210211
```
211212

212-
#### stdlib_strided_dcumaxabs_ndarray(N, \*X, strideX, offsetX, \*Y, strideY, offsetY)
213+
#### stdlib_strided_dcumaxabs_ndarray(N, \*X, strideX, offsetX, \*Y, strideY, offsetY )
213214

214215
Computes the cumulative maximum absolute value of double-precision floating-point strided array elements using alternative indexing semantics.
215216

0 commit comments

Comments
 (0)