Skip to content

Commit 1609c29

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <[email protected]>
1 parent d606c16 commit 1609c29

File tree

1 file changed

+3
-2
lines changed
  • lib/node_modules/@stdlib/stats/base/dcumin

1 file changed

+3
-2
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@ var x = discreteUniform( 10, -50, 50, {
149149
'dtype': 'float64'
150150
});
151151
console.log( x );
152+
152153
var y = new Float64Array( x.length );
153154
console.log( y );
154155

@@ -188,7 +189,7 @@ console.log( y );
188189

189190
#### stdlib_strided_dcumin( N, \*X, strideX, \*Y, strideY )
190191

191-
Calculate the cumulative minimum of double-precision floating-point strided array elements.
192+
Computes the cumulative minimum of double-precision floating-point strided array elements.
192193

193194
```c
194195
const double x[] = { 1.0, 2.0, -3.0, 4.0, -5.0, 6.0, 7.0, 8.0 };
@@ -209,7 +210,7 @@ The function accepts the following arguments:
209210
void stdlib_strided_dcumin( const CBLAS_INT N, const double *X, const CBLAS_INT strideX, double *Y, const CBLAS_INT strideY );
210211
```
211212

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

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

0 commit comments

Comments
 (0)