Skip to content

Commit 65d72f6

Browse files
authored
chore: change package naming
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 7b5f223 commit 65d72f6

File tree

1 file changed

+8
-8
lines changed
  • lib/node_modules/@stdlib/blas/base/zaxpy

1 file changed

+8
-8
lines changed

lib/node_modules/@stdlib/blas/base/zaxpy/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -211,10 +211,10 @@ logEach( '(%s)*(%s) + (%s) = %s', alpha, x, yc, y );
211211
### Usage
212212

213213
```c
214-
#include "stdlib/blas/base/caxpy.h"
214+
#include "stdlib/blas/base/zaxpy.h"
215215
```
216216

217-
#### c_caxpy( N, alpha, \*X, strideX, \*Y, strideY )
217+
#### c_zaxpy( N, alpha, \*X, strideX, \*Y, strideY )
218218

219219
Scales values from `X` by `alpha` and adds the result to `Y`.
220220

@@ -225,7 +225,7 @@ float x[] = { 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 };
225225
float y[] = { -1.0, -2.0, -3.0, -4.0, -5.0, -6.0, -7.0, -8.0 };
226226
const stdlib_complex128_t alpha = stdlib_complex128( 2.0, 2.0 );
227227

228-
c_caxpy( 4, alpha, (void *)x, 1, (void *)y, 1 );
228+
c_zaxpy( 4, alpha, (void *)x, 1, (void *)y, 1 );
229229
```
230230
231231
The function accepts the following arguments:
@@ -238,10 +238,10 @@ The function accepts the following arguments:
238238
- **strideY**: `[in] CBLAS_INT` stride length for `Y`.
239239
240240
```c
241-
void c_caxpy( const CBLAS_INT N, const stdlib_complex128_t alpha, const void *x, const CBLAS_INT strideX, void *y, const CBLAS_INT strideY );
241+
void c_zaxpy( const CBLAS_INT N, const stdlib_complex128_t alpha, const void *x, const CBLAS_INT strideX, void *y, const CBLAS_INT strideY );
242242
```
243243

244-
#### c_caxpy_ndarray( N, alpha, \*X, strideX, offsetX, \*Y, strideY, offsetY )
244+
#### c_zaxpy_ndarray( N, alpha, \*X, strideX, offsetX, \*Y, strideY, offsetY )
245245

246246
Scales values from `X` by `alpha` and adds the result to `Y` using alternative indexing semantics.
247247

@@ -252,7 +252,7 @@ float x[] = { 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 };
252252
float y[] = { -1.0, -2.0, -3.0, -4.0, -5.0, -6.0, -7.0, -8.0 };
253253
const stdlib_complex128_t alpha = stdlib_complex128( 2.0, 2.0 );
254254

255-
c_caxpy_ndarray( 4, alpha, (void *)x, 1, 0, (void *)y, 1, 0 );
255+
c_zaxpy_ndarray( 4, alpha, (void *)x, 1, 0, (void *)y, 1, 0 );
256256
```
257257
258258
The function accepts the following arguments:
@@ -267,7 +267,7 @@ The function accepts the following arguments:
267267
- **offsetY**: `[in] CBLAS_INT` starting index for `Y`.
268268
269269
```c
270-
void c_caxpy_ndarray( const CBLAS_INT N, const stdlib_complex128_t alpha, const void *x, const CBLAS_INT strideX, const CBLAS_INT offsetX, void *y, const CBLAS_INT strideY, const CBLAS_INT offsetY );
270+
void c_zaxpy_ndarray( const CBLAS_INT N, const stdlib_complex128_t alpha, const void *x, const CBLAS_INT strideX, const CBLAS_INT offsetX, void *y, const CBLAS_INT strideY, const CBLAS_INT offsetY );
271271
```
272272

273273
</section>
@@ -289,7 +289,7 @@ void c_caxpy_ndarray( const CBLAS_INT N, const stdlib_complex128_t alpha, const
289289
### Examples
290290

291291
```c
292-
#include "stdlib/blas/base/caxpy.h"
292+
#include "stdlib/blas/base/zaxpy.h"
293293
#include "stdlib/complex/float32/ctor.h"
294294
#include <stdio.h>
295295

0 commit comments

Comments
 (0)