@@ -287,7 +287,7 @@ console.log( x.get( 0 ).toString() );
287
287
288
288
#### stdlib_strided_cfill( N, alpha, \* X, strideX )
289
289
290
- Fills a single-precision floating-point strided array ` X ` with a specified scalar constant ` alpha ` .
290
+ Fills a single-precision complex floating-point strided array ` X ` with a specified scalar constant ` alpha ` .
291
291
292
292
``` c
293
293
float x[] = { 1.0f, 2.0f, 3.0f, 4.0f };
@@ -321,13 +321,13 @@ stdlib_strided_cfill_ndarray( 4, alpha, (stdlib_complex64_t *x), 1, 0 );
321
321
The function accepts the following arguments:
322
322
323
323
- **N**: `[in] CBLAS_INT` number of indexed elements.
324
- - **alpha**: `[in] stlib_complex64_t ` scalar constant.
324
+ - **alpha**: `[in] stdlib_complex64_t ` scalar constant.
325
325
- **X**: `[out] stdlib_complex64_t*` input array.
326
326
- **strideX**: `[in] CBLAS_INT` index increment for `X`.
327
327
- **offsetX**: `[in] CBLAS_INT` starting index for `X`.
328
328
329
329
```c
330
- void stdlib_strided_cfill_ndarray( const CBLAS_INT N, const stdlib_complex64_t alpha, stdlib_complex_64_t *X, const CBLAS_INT strideX, const CBLAS_INT offsetX );
330
+ void stdlib_strided_cfill_ndarray( const CBLAS_INT N, const stdlib_complex64_t alpha, stdlib_complex64_t *X, const CBLAS_INT strideX, const CBLAS_INT offsetX );
331
331
```
332
332
333
333
</section >
@@ -367,7 +367,7 @@ int main( void ) {
367
367
const int strideX = 1;
368
368
369
369
// Fill the array:
370
- stdlib_strided_cfill( N, alpha, (stdlib_complex_64_t *)x, strideX );
370
+ stdlib_strided_cfill( N, alpha, (stdlib_complex64_t *)x, strideX );
371
371
372
372
// Print the result:
373
373
for ( int i = 0; i < N; i++ ) {
0 commit comments