8000 Auto-generated commit · stdlib-js/array-linspace@41fd760 · GitHub
[go: up one dir, main page]

Skip to content

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 41fd760

Browse files
committed
Auto-generated commit
1 parent 90f7a28 commit 41fd760

File tree

11 files changed

+29
-26
lines changed

11 files changed

+29
-26
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,17 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-07-07)
7+
## Unreleased (2024-07-17)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`8d4c46b`](https://github.com/stdlib-js/stdlib/commit/8d4c46b10ca912401e0ff0caa37a17cd3c443c2f) - **refactor:** update paths _(by Athan Reines)_
16+
- [`ed9c0a5`](https://github.com/stdlib-js/stdlib/commit/ed9c0a5e55ff09af3dd6af8c38615480e2c1828e) - **refactor:** update paths _(by Athan Reines)_
17+
- [`18b3c79`](https://github.com/stdlib-js/stdlib/commit/18b3c79c5035c7082618b7379cd6576e64393a96) - **refactor:** update paths _(by Athan Reines)_
1518
- [`a78f7d1`](https://github.com/stdlib-js/stdlib/commit/a78f7d1b859b6b1d7b0bc0ee4daf76789e3e0910) - **style:** add missing spaces _(by Philipp Burckhardt)_
1619
- [`75d4f83`](https://github.com/stdlib-js/stdlib/commit/75d4f83cb85610d23a04dc21a03f8075f6d3665f) - **refactor:** update require and include paths _(by Athan Reines)_
1720

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ When either `start` or `stop` is a complex number, the default output array data
135135
```javascript
136136
var Complex128 = require( '@stdlib/complex-float64-ctor' );
137137
var real = require( '@stdlib/complex-real' );
138-
var imag = require( '@stdlib/complex-imag' );
138+
var imag = require( '@stdlib/complex-float64-imag' );
139139

140140
var opts = {
141141
'dtype': 'generic'

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/accessors_complex.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
var Complex64 = require( '@stdlib/complex-float32-ctor' );
2424
var Complex128 = require( '@stdlib/complex-float64-ctor' );
2525
var real = require( '@stdlib/complex-real' );
26-
var imag = require( '@stdlib/complex-imag' );
27-
var realf = require( '@stdlib/complex-realf' );
28-
var imagf = require( '@stdlib/complex-imagf' );
26+
var imag = require( '@stdlib/complex-float64-imag' );
27+
var realf = require( '@stdlib/complex-float32-real' );
28+
var imagf = require( '@stdlib/complex-float32-imag' );
2929

3030

3131
// MAIN //

lib/generic_complex.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
var Complex64 = require( '@stdlib/complex-float32-ctor' );
2424
var Complex128 = require( '@stdlib/complex-float64-ctor' );
2525
var real = require( '@stdlib/complex-real' );
26-
var imag = require( '@stdlib/complex-imag' );
27-
var realf = require( '@stdlib/complex-realf' );
28-
var imagf = require( '@stdlib/complex-imagf' );
26+
var imag = require( '@stdlib/complex-float64-imag' );
27+
var realf = require( '@stdlib/complex-float32-real' );
28+
var imagf = require( '@stdlib/complex-float32-imag' );
2929

3030

3131
// MAIN //

lib/typed_complex.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
// MODULES //
2222

2323
var real = require( '@stdlib/complex-real' );
24-
var imag = require( '@stdlib/complex-imag' );
25-
var realf = require( '@stdlib/complex-realf' );
26-
var imagf = require( '@stdlib/complex-imagf' );
24+
var imag = require( '@stdlib/complex-float64-imag' );
25+
var realf = require( '@stdlib/complex-float32-real' );
26+
var imagf = require( '@stdlib/complex-float32-imag' );
2727

2828

2929
// MAIN //

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@
5151
"@stdlib/assert-is-string": "^0.2.1",
5252
"@stdlib/complex-dtype": "^0.2.1",
5353
"@stdlib/complex-float32-ctor": "^0.0.1",
54+
"@stdlib/complex-float32-imag": "github:stdlib-js/complex-float32-imag#main",
55+
"@stdlib/complex-float32-real": "github:stdlib-js/complex-float32-real#main",
5456
"@stdlib/complex-float64-ctor": "^0.0.1",
55-
"@stdlib/complex-imag": "^0.2.1",
56-
"@stdlib/complex-imagf": "^0.2.1",
57+
"@stdlib/complex-float64-imag": "github:stdlib-js/complex-float64-imag#main",
5758
"@stdlib/complex-real": "^0.2.1",
58-
"@stdlib/complex-realf": "^0.2.1",
5959
"@stdlib/math-base-assert-is-nan": "^0.2.1",
6060
"@stdlib/strided-base-reinterpret-complex128": "^0.2.1",
6161
"@stdlib/strided-base-reinterpret-complex64": "^0.2.0",

test/fixtures/complex_strided.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222

2323
var isComplex64 = require( '@stdlib/assert-is-complex64' );
2424
var real = require( '@stdlib/complex-real' );
25-
var imag = require( '@stdlib/complex-imag' );
26-
var realf = require( '@stdlib/complex-realf' );
27-
var imagf = require( '@stdlib/complex-imagf' );
25+
var imag = require( '@stdlib/complex-float64-imag' );
26+
var realf = require( '@stdlib/complex-float32-real' );
27+
var imagf = require( '@stdlib/complex-float32-imag' );
2828

2929

3030
// MAIN //

0 commit comments

Comments
 (0)
0