Skip to content

Commit 8779218

Browse files
committed
Auto-generated commit
1 parent b5014ca commit 8779218

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+124
-123
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2647,6 +2647,7 @@ A total of 35 people contributed to this release. Thank you to the following con
26472647

26482648
<details>
26492649

2650+
- [`32bbcb3`](https://github.com/stdlib-js/stdlib/commit/32bbcb3b3dae1f028fd18166ee7875a93d44d0ee) - **refactor:** update paths _(by Athan Reines)_
26502651
- [`8d4c46b`](https://github.com/stdlib-js/stdlib/commit/8d4c46b10ca912401e0ff0caa37a17cd3c443c2f) - **refactor:** update paths _(by Athan Reines)_
26512652
- [`ed9c0a5`](https://github.com/stdlib-js/stdlib/commit/ed9c0a5e55ff09af3dd6af8c38615480e2c1828e) - **refactor:** update paths _(by Athan Reines)_
26522653
- [`18b3c79`](https://github.com/stdlib-js/stdlib/commit/18b3c79c5035c7082618b7379cd6576e64393a96) - **refactor:** update paths _(by Athan Reines)_

base/dcabs1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ double c_dcabs1( const stdlib_complex128_t z );
136136
```c
137137
#include "stdlib/blas/base/dcabs1.h"
138138
#include "stdlib/complex/float64/ctor.h"
139-
#include "stdlib/complex/real.h"
139+
#include "stdlib/complex/float64/real.h"
140140
#include "stdlib/complex/float64/imag.h"
141141
#include <stdio.h>
142142
@@ -152,7 +152,7 @@ int main( void ) {
152152
int i;
153153
for ( i = 0; i < 4; i++ ) {
154154
y = c_dcabs1( x[ i ] );
155-
printf( "f(%lf + %lf) = %lf\n", stdlib_real( x[ i ] ), stdlib_complex128_imag( x[ i ] ), y );
155+
printf( "f(%lf + %lf) = %lf\n", stdlib_complex128_real( x[ i ] ), stdlib_complex128_imag( x[ i ] ), y );
156156
}
157157
}
158158
```

base/dcabs1/examples/c/example.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
#include "stdlib/blas/base/dcabs1.h"
2020
#include "stdlib/complex/float64/ctor.h"
21-
#include "stdlib/complex/real.h"
21+
#include "stdlib/complex/float64/real.h"
2222
#include "stdlib/complex/float64/imag.h"
2323
#include <stdio.h>
2424

@@ -34,6 +34,6 @@ int main( void ) {
3434
int i;
3535
for ( i = 0; i < 4; i++ ) {
3636
y = c_dcabs1( x[ i ] );
37-
printf( "f(%lf + %lf) = %lf\n", stdlib_real( x[ i ] ), stdlib_complex128_imag( x[ i ] ), y );
37+
printf( "f(%lf + %lf) = %lf\n", stdlib_complex128_real( x[ i ] ), stdlib_complex128_imag( x[ i ] ), y );
3838
}
3939
}

base/dcabs1/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// MODULES //
2222

2323
var abs = require( '@stdlib/math/base/special/abs' );
24-
var real = require( '@stdlib/complex/real' );
24+
var real = require( '@stdlib/complex/float64/real' );
2525
var imag = require( '@stdlib/complex/float64/imag' );
2626

2727

base/dcabs1/manifest.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
"@stdlib/math/base/special/abs",
8888
"@stdlib/complex/float64/ctor",
8989
"@stdlib/complex/float64/reim",
90-
"@stdlib/complex/real",
90+
"@stdlib/complex/float64/real",
9191
"@stdlib/complex/float64/imag"
9292
]
9393
},
@@ -154,7 +154,7 @@
154154
"libpath": [],
155155
"dependencies": [
156156
"@stdlib/complex/float64/ctor",
157-
"@stdlib/complex/real",
157+
"@stdlib/complex/float64/real",
158158
"@stdlib/complex/float64/imag"
159159
]
160160
},
@@ -218,7 +218,7 @@
218218
"@stdlib/math/base/special/abs",
219219
"@stdlib/complex/float64/ctor",
220220
"@stdlib/complex/float64/reim",
221-
"@stdlib/complex/real",
221+
"@stdlib/complex/float64/real",
222222
"@stdlib/complex/float64/imag"
223223
]
224224
},
@@ -282,7 +282,7 @@
282282
"libpath": [],
283283
"dependencies": [
284284
"@stdlib/complex/float64/ctor",
285-
"@stdlib/complex/real",
285+
"@stdlib/complex/float64/real",
286286
"@stdlib/complex/float64/imag"
287287
]
288288
},
@@ -349,7 +349,7 @@
349349
"libpath": [],
350350
"dependencies": [
351351
"@stdlib/complex/float64/ctor",
352-
"@stdlib/complex/real",
352+
"@stdlib/complex/float64/real",
353353
"@stdlib/complex/float64/imag"
354354
]
355355
},
@@ -413,7 +413,7 @@
413413
"@stdlib/math/base/special/abs",
414414
"@stdlib/complex/float64/ctor",
415415
"@stdlib/complex/float64/reim",
416-
"@stdlib/complex/real",
416+
"@stdlib/complex/float64/real",
417417
"@stdlib/complex/float64/imag"
418418
]
419419
},

base/docs/types/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1406,7 +1406,7 @@ interface Namespace {
14061406
*
14071407
* @example
14081408
* var Complex128Array = require( '@stdlib/array/complex128' );
1409-
* var real = require( '@stdlib/complex/real' );
1409+
* var real = require( '@stdlib/complex/float64/real' );
14101410
* var imag = require( '@stdlib/complex/float64/imag' );
14111411
*
14121412
* var x = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
@@ -1425,7 +1425,7 @@ interface Namespace {
14251425
*
14261426
* @example
14271427
* var Complex128Array = require( '@stdlib/array/complex128' );
1428-
* var real = require( '@stdlib/complex/real' );
1428+
* var real = require( '@stdlib/complex/float64/real' );
14291429
* var imag = require( '@stdlib/complex/float64/imag' );
14301430
*
14311431
* var x = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
@@ -1456,7 +1456,7 @@ interface Namespace {
14561456
*
14571457
* @example
14581458
* var Complex128Array = require( '@stdlib/array/complex128' );
1459-
* var real = require( '@stdlib/complex/real' );
1459+
* var real = require( '@stdlib/complex/float64/real' );
14601460
* var imag = require( '@stdlib/complex/float64/imag' );
14611461
*
14621462
* var x = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
@@ -1484,7 +1484,7 @@ interface Namespace {
14841484
*
14851485
* @example
14861486
* var Complex128Array = require( '@stdlib/array/complex128' );
1487-
* var real = require( '@stdlib/complex/real' );
1487+
* var real = require( '@stdlib/complex/float64/real' );
14881488
* var imag = require( '@stdlib/complex/float64/imag' );
14891489
*
14901490
* var x = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );

base/zaxpy/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Scales values from `zx` by `za` and adds the result to `zy`.
3737
```javascript
3838
var Complex128Array = require( '@stdlib/array/complex128' );
3939
var Complex128 = require('@stdlib/complex/float64/ctor');
40-
var real = require( '@stdlib/complex/real' );
40+
var real = require( '@stdlib/complex/float64/real' );
4141
var imag = require( '@stdlib/complex/float64/imag' );
4242

4343
var zx = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
@@ -70,7 +70,7 @@ The `N` and stride parameters determine how values from `zx` are scaled by `za`
7070
```javascript
7171
var Complex128Array = require( '@stdlib/array/complex128' );
7272
var Complex128 = require( '@stdlib/complex/float64/ctor' );
73-
var real = require( '@stdlib/complex/real' );
73+
var real = require( '@stdlib/complex/float64/real' );
7474
var imag = require( '@stdlib/complex/float64/imag' );
7575

7676
var zx = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
@@ -96,7 +96,7 @@ Note that indexing is relative to the first index. To introduce an offset, use [
9696
```javascript
9797
var Complex128Array = require( '@stdlib/array/complex128' );
9898
var Complex128 = require( '@stdlib/complex/float64/ctor' );
99-
var real = require( '@stdlib/complex/real' );
99+
var real = require( '@stdlib/complex/float64/real' );
100100
var imag = require( '@stdlib/complex/float64/imag' );
101101

102102
// Initial arrays...
@@ -130,7 +130,7 @@ Scales values from `zx` by `za` and adds the result to `zy` using alternative in
130130
```javascript
131131
var Complex128Array = require( '@stdlib/array/complex128' );
132132
var Complex128 = require( '@stdlib/complex/float64/ctor' );
133-
var real = require( '@stdlib/complex/real' );
133+
var real = require( '@stdlib/complex/float64/real' );
134134
var imag = require( '@stdlib/complex/float64/imag' );
135135

136136
var zx = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
@@ -159,7 +159,7 @@ While [`typed array`][mdn-typed-array] views mandate a view offset based on the
159159
```javascript
160160
var Complex128Array = require( '@stdlib/array/complex128' );
161161
var Complex128 = require( '@stdlib/complex/float64/ctor' );
162-
var real = require( '@stdlib/complex/real' );
162+
var real = require( '@stdlib/complex/float64/real' );
163163
var imag = require( '@stdlib/complex/float64/imag' );
164164

165165
var zx = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );

base/zaxpy/docs/repl.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
> var za = new {{alias:@stdlib/complex/float64/ctor}}( 2.0, 2.0 );
4646
> {{alias}}( 2, za, zx, 1, zy, 1 );
4747
> var z = zy.get( 0 );
48-
> var re = {{alias:@stdlib/complex/real}}( z )
48+
> var re = {{alias:@stdlib/complex/float64/real}}( z )
4949
-1.0
5050
> var im = {{alias:@stdlib/complex/float64/imag}}( z )
5151
7.0
@@ -55,7 +55,7 @@
5555
> zy = new {{alias:@stdlib/array/complex128}}( [ 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 ] );
5656
> {{alias}}( 2, za, zx, -2, zy, 1 );
5757
> z = zy.get( 0 );
58-
> re = {{alias:@stdlib/complex/real}}( z )
58+
> re = {{alias:@stdlib/complex/float64/real}}( z )
5959
-1.0
6060
> im = {{alias:@stdlib/complex/float64/imag}}( z )
6161
23.0
@@ -67,7 +67,7 @@
6767
> var zy1 = new {{alias:@stdlib/array/complex128}}( zy0.buffer, zy0.BYTES_PER_ELEMENT*1 );
6868
> {{alias}}( 1, za, zx1, 1, zy1, 1 );
6969
> z = zy0.get( 1 );
70-
> re = {{alias:@stdlib/complex/real}}( z )
70+
> re = {{alias:@stdlib/complex/float64/real}}( z )
7171
-1.0
7272
> im = {{alias:@stdlib/complex/float64/imag}}( z )
7373
15.0
@@ -122,7 +122,7 @@
122122
> var za = new {{alias:@stdlib/complex/float64/ctor}}( 2.0, 2.0 );
123123
> {{alias}}.ndarray( zx.length, za, zx, 1, 0, zy, 1, 0 );
124124
> var z = zy.get( 0 );
125-
> var re = {{alias:@stdlib/complex/real}}( z )
125+
> var re = {{alias:@stdlib/complex/float64/real}}( z )
126126
-1.0
127127
> var im = {{alias:@stdlib/complex/float64/imag}}( z )
128128
7.0
@@ -132,7 +132,7 @@
132132
> zy = new {{alias:@stdlib/array/complex128}}( [ 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 ] );
133133
> {{alias}}.ndarray( 2, za, zx, 1, 1, zy, 1, 1 );
134134
> z = zy.get( 2 );
135-
> re = {{alias:@stdlib/complex/real}}( z )
135+
> re = {{alias:@stdlib/complex/float64/real}}( z )
136136
-1.0
137137
> im = {{alias:@stdlib/complex/float64/imag}}( z )
138138
23.0

base/zaxpy/docs/types/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ interface Routine {
4141
* @example
4242
* var Complex128Array = require( '@stdlib/array/complex128' );
4343
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
44-
* var real = require( '@stdlib/complex/real' );
44+
* var real = require( '@stdlib/complex/float64/real' );
4545
* var imag = require( '@stdlib/complex/float64/imag' );
4646
*
4747
* var zx = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
@@ -77,7 +77,7 @@ interface Routine {
7777
* @example
7878
* var Complex128Array = require( '@stdlib/array/complex128' );
7979
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
80-
* var real = require( '@stdlib/complex/real' );
80+
* var real = require( '@stdlib/complex/float64/real' );
8181
* var imag = require( '@stdlib/complex/float64/imag' );
8282
*
8383
* var zx = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
@@ -112,7 +112,7 @@ interface Routine {
112112
* @example
113113
* var Complex128Array = require( '@stdlib/array/complex128' );
114114
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
115-
* var real = require( '@stdlib/complex/real' );
115+
* var real = require( '@stdlib/complex/float64/real' );
116116
* var imag = require( '@stdlib/complex/float64/imag' );
117117
*
118118
* var zx = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
@@ -133,7 +133,7 @@ interface Routine {
133133
* @example
134134
* var Complex128Array = require( '@stdlib/array/complex128' );
135135
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
136-
* var real = require( '@stdlib/complex/real' );
136+
* var real = require( '@stdlib/complex/float64/real' );
137137
* var imag = require( '@stdlib/complex/float64/imag' );
138138
*
139139
* var zx = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );

base/zaxpy/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* @example
2727
* var Complex128Array = require( '@stdlib/array/complex128' );
2828
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
29-
* var real = require( '@stdlib/complex/real' );
29+
* var real = require( '@stdlib/complex/float64/real' );
3030
* var imag = require( '@stdlib/complex/float64/imag' );
3131
* var zaxpy = require( '@stdlib/blas/base/zaxpy' );
3232
*
@@ -48,7 +48,7 @@
4848
* @example
4949
* var Complex128Array = require( '@stdlib/array/complex128' );
5050
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
51-
* var real = require( '@stdlib/complex/real' );
51+
* var real = require( '@stdlib/complex/float64/real' );
5252
* var imag = require( '@stdlib/complex/float64/imag' );
5353
* var zaxpy = require( '@stdlib/blas/base/zaxpy' );
5454
*

0 commit comments

Comments
 (0)