@stdlib/simulate-iter 0.1.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NOTICE +1 -1
- package/README.md +6 -3
- package/SECURITY.md +5 -0
- package/docs/types/index.d.ts +4 -5
- package/package.json +21 -80
- package/CITATION.cff +0 -30
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2024 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -146,7 +146,7 @@ See [LICENSE][stdlib-license].
|
|
|
146
146
|
|
|
147
147
|
## Copyright
|
|
148
148
|
|
|
149
|
-
Copyright © 2016-
|
|
149
|
+
Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
150
150
|
|
|
151
151
|
</section>
|
|
152
152
|
|
|
@@ -159,8 +159,8 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
|
|
|
159
159
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/simulate-iter.svg
|
|
160
160
|
[npm-url]: https://npmjs.org/package/@stdlib/simulate-iter
|
|
161
161
|
|
|
162
|
-
[test-image]: https://github.com/stdlib-js/simulate-iter/actions/workflows/test.yml/badge.svg?branch=v0.1
|
|
163
|
-
[test-url]: https://github.com/stdlib-js/simulate-iter/actions/workflows/test.yml?query=branch:v0.1
|
|
162
|
+
[test-image]: https://github.com/stdlib-js/simulate-iter/actions/workflows/test.yml/badge.svg?branch=v0.2.1
|
|
163
|
+
[test-url]: https://github.com/stdlib-js/simulate-iter/actions/workflows/test.yml?query=branch:v0.2.1
|
|
164
164
|
|
|
165
165
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/simulate-iter/main.svg
|
|
166
166
|
[coverage-url]: https://codecov.io/github/stdlib-js/simulate-iter?branch=main
|
|
@@ -183,8 +183,11 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
|
|
|
183
183
|
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
184
184
|
|
|
185
185
|
[deno-url]: https://github.com/stdlib-js/simulate-iter/tree/deno
|
|
186
|
+
[deno-readme]: https://github.com/stdlib-js/simulate-iter/blob/deno/README.md
|
|
186
187
|
[umd-url]: https://github.com/stdlib-js/simulate-iter/tree/umd
|
|
188
|
+
[umd-readme]: https://github.com/stdlib-js/simulate-iter/blob/umd/README.md
|
|
187
189
|
[esm-url]: https://github.com/stdlib-js/simulate-iter/tree/esm
|
|
190
|
+
[esm-readme]: https://github.com/stdlib-js/simulate-iter/blob/esm/README.md
|
|
188
191
|
[branches-url]: https://github.com/stdlib-js/simulate-iter/blob/main/branches.md
|
|
189
192
|
|
|
190
193
|
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/simulate-iter/main/LICENSE
|
package/SECURITY.md
ADDED
package/docs/types/index.d.ts
CHANGED
|
@@ -18,8 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
// TypeScript Version: 4.1
|
|
20
20
|
|
|
21
|
-
/*
|
|
22
|
-
/* tslint:disable:max-file-line-count */
|
|
21
|
+
/* eslint-disable max-lines */
|
|
23
22
|
|
|
24
23
|
import iterawgn = require( '@stdlib/simulate-iter-awgn' );
|
|
25
24
|
import iterawln = require( '@stdlib/simulate-iter-awln' );
|
|
@@ -57,7 +56,7 @@ interface Namespace {
|
|
|
57
56
|
* @returns iterator
|
|
58
57
|
*
|
|
59
58
|
* @example
|
|
60
|
-
* var iterSineWave = require(
|
|
59
|
+
* var iterSineWave = require( '@stdlib/simulate-iter-sine-wave' );
|
|
61
60
|
*
|
|
62
61
|
* var sine = iterSineWave({
|
|
63
62
|
* 'iter': 100
|
|
@@ -93,7 +92,7 @@ interface Namespace {
|
|
|
93
92
|
* @returns iterator
|
|
94
93
|
*
|
|
95
94
|
* @example
|
|
96
|
-
* var iterSineWave = require(
|
|
95
|
+
* var iterSineWave = require( '@stdlib/simulate-iter-sine-wave' );
|
|
97
96
|
*
|
|
98
97
|
* var sine = iterSineWave({
|
|
99
98
|
* 'iter': 100
|
|
@@ -129,7 +128,7 @@ interface Namespace {
|
|
|
129
128
|
* @returns iterator
|
|
130
129
|
*
|
|
131
130
|
* @example
|
|
132
|
-
* var iterSineWave = require(
|
|
131
|
+
* var iterSineWave = require( '@stdlib/simulate-iter-sine-wave' );
|
|
133
132
|
*
|
|
134
133
|
* var sine = iterSineWave({
|
|
135
134
|
* 'iter': 100
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/simulate-iter",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Simulation iterators.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -16,17 +16,11 @@
|
|
|
16
16
|
"main": "./lib",
|
|
17
17
|
"directories": {
|
|
18
18
|
"doc": "./docs",
|
|
19
|
-
"example": "./examples",
|
|
20
19
|
"lib": "./lib",
|
|
21
|
-
"
|
|
20
|
+
"dist": "./dist"
|
|
22
21
|
},
|
|
23
22
|
"types": "./docs/types",
|
|
24
|
-
"scripts": {
|
|
25
|
-
"test": "make test",
|
|
26
|
-
"test-cov": "make test-cov",
|
|
27
|
-
"examples": "make examples",
|
|
28
|
-
"benchmark": "make benchmark"
|
|
29
|
-
},
|
|
23
|
+
"scripts": {},
|
|
30
24
|
"homepage": "https://stdlib.io",
|
|
31
25
|
"repository": {
|
|
32
26
|
"type": "git",
|
|
@@ -36,78 +30,25 @@
|
|
|
36
30
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
37
31
|
},
|
|
38
32
|
"dependencies": {
|
|
39
|
-
"@stdlib/simulate-iter-awgn": "^0.1
|
|
40
|
-
"@stdlib/simulate-iter-awln": "^0.1
|
|
41
|
-
"@stdlib/simulate-iter-awun": "^0.
|
|
42
|
-
"@stdlib/simulate-iter-bartlett-hann-pulse": "^0.1
|
|
43
|
-
"@stdlib/simulate-iter-bartlett-pulse": "^0.1
|
|
44
|
-
"@stdlib/simulate-iter-cosine-wave": "^0.1
|
|
45
|
-
"@stdlib/simulate-iter-dirac-comb": "^0.1
|
|
46
|
-
"@stdlib/simulate-iter-flat-top-pulse": "^0.1
|
|
47
|
-
"@stdlib/simulate-iter-hann-pulse": "^0.1
|
|
48
|
-
"@stdlib/simulate-iter-lanczos-pulse": "^0.1
|
|
49
|
-
"@stdlib/simulate-iter-periodic-sinc": "^0.1
|
|
50
|
-
"@stdlib/simulate-iter-pulse": "^0.1
|
|
51
|
-
"@stdlib/simulate-iter-sawtooth-wave": "^0.1
|
|
52
|
-
"@stdlib/simulate-iter-sine-wave": "^0.1
|
|
53
|
-
"@stdlib/simulate-iter-square-wave": "^0.1
|
|
54
|
-
"@stdlib/simulate-iter-triangle-wave": "^0.1
|
|
55
|
-
"@stdlib/utils-define-read-only-property": "^0.1
|
|
56
|
-
},
|
|
57
|
-
"devDependencies": {
|
|
58
|
-
"@stdlib/array-float64": "^0.1.0",
|
|
59
|
-
"@stdlib/array-to-iterator": "^0.1.0",
|
|
60
|
-
"@stdlib/array-uint32": "^0.1.0",
|
|
61
|
-
"@stdlib/assert-has-own-property": "^0.1.0",
|
|
62
|
-
"@stdlib/assert-is-boolean": "^0.1.0",
|
|
63
|
-
"@stdlib/assert-is-function": "^0.1.0",
|
|
64
|
-
"@stdlib/assert-is-integer": "^0.1.0",
|
|
65
|
-
"@stdlib/assert-is-iterator-like": "^0.1.0",
|
|
66
|
-
"@stdlib/assert-is-nonnegative-integer": "^0.1.0",
|
|
67
|
-
"@stdlib/assert-is-nonnegative-number": "^0.1.0",
|
|
68
|
-
"@stdlib/assert-is-number": "^0.1.0",
|
|
69
|
-
"@stdlib/assert-is-plain-object": "^0.1.0",
|
|
70
|
-
"@stdlib/assert-is-positive-integer": "^0.1.0",
|
|
71
|
-
"@stdlib/assert-is-positive-number": "^0.1.0",
|
|
72
|
-
"@stdlib/assert-is-uint32array": "^0.1.0",
|
|
73
|
-
"@stdlib/bench": "^0.1.0",
|
|
74
|
-
"@stdlib/constants-float64-eps": "^0.1.0",
|
|
75
|
-
"@stdlib/constants-float64-half-pi": "^0.1.0",
|
|
76
|
-
"@stdlib/constants-float64-pi": "^0.1.0",
|
|
77
|
-
"@stdlib/constants-float64-pinf": "^0.1.0",
|
|
78
|
-
"@stdlib/constants-float64-sqrt-three": "^0.1.0",
|
|
79
|
-
"@stdlib/constants-float64-sqrt-two": "^0.1.0",
|
|
80
|
-
"@stdlib/constants-uint32-max": "^0.1.0",
|
|
81
|
-
"@stdlib/math-base-assert-is-even": "^0.1.0",
|
|
82
|
-
"@stdlib/math-base-assert-is-nan": "^0.1.0",
|
|
83
|
-
"@stdlib/math-base-special-abs": "^0.1.0",
|
|
84
|
-
"@stdlib/math-base-special-asin": "^0.1.0",
|
|
85
|
-
"@stdlib/math-base-special-atan": "^0.1.0",
|
|
86
|
-
"@stdlib/math-base-special-cospi": "^0.2.0",
|
|
87
|
-
"@stdlib/math-base-special-floor": "^0.1.0",
|
|
88
|
-
"@stdlib/math-base-special-sinc": "^0.1.0",
|
|
89
|
-
"@stdlib/math-base-special-sinpi": "^0.1.0",
|
|
90
|
-
"@stdlib/math-base-special-tan": "^0.1.0",
|
|
91
|
-
"@stdlib/math-base-special-wrap": "^0.1.0",
|
|
92
|
-
"@stdlib/random-base-box-muller": "^0.1.0",
|
|
93
|
-
"@stdlib/random-base-improved-ziggurat": "^0.1.0",
|
|
94
|
-
"@stdlib/random-base-laplace": "^0.1.0",
|
|
95
|
-
"@stdlib/random-base-minstd-shuffle": "^0.1.0",
|
|
96
|
-
"@stdlib/random-base-uniform": "^0.1.0",
|
|
97
|
-
"@stdlib/random-iter-randu": "^0.1.0",
|
|
98
|
-
"@stdlib/string-format": "^0.1.0",
|
|
99
|
-
"@stdlib/symbol-iterator": "^0.1.0",
|
|
100
|
-
"@stdlib/utils-constant-function": "^0.1.0",
|
|
101
|
-
"@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.1.0",
|
|
102
|
-
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.1.0",
|
|
103
|
-
"@stdlib/utils-define-nonenumerable-read-write-accessor": "^0.1.0",
|
|
104
|
-
"@stdlib/utils-keys": "^0.1.0",
|
|
105
|
-
"@stdlib/utils-noop": "^0.1.0",
|
|
106
|
-
"proxyquire": "^2.0.0",
|
|
107
|
-
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
108
|
-
"istanbul": "^0.4.1",
|
|
109
|
-
"tap-min": "git+https://github.com/Planeshifter/tap-min.git"
|
|
33
|
+
"@stdlib/simulate-iter-awgn": "^0.2.1",
|
|
34
|
+
"@stdlib/simulate-iter-awln": "^0.2.1",
|
|
35
|
+
"@stdlib/simulate-iter-awun": "^0.2.1",
|
|
36
|
+
"@stdlib/simulate-iter-bartlett-hann-pulse": "^0.2.1",
|
|
37
|
+
"@stdlib/simulate-iter-bartlett-pulse": "^0.2.1",
|
|
38
|
+
"@stdlib/simulate-iter-cosine-wave": "^0.2.1",
|
|
39
|
+
"@stdlib/simulate-iter-dirac-comb": "^0.2.1",
|
|
40
|
+
"@stdlib/simulate-iter-flat-top-pulse": "^0.2.1",
|
|
41
|
+
"@stdlib/simulate-iter-hann-pulse": "^0.2.1",
|
|
42
|
+
"@stdlib/simulate-iter-lanczos-pulse": "^0.2.1",
|
|
43
|
+
"@stdlib/simulate-iter-periodic-sinc": "^0.2.1",
|
|
44
|
+
"@stdlib/simulate-iter-pulse": "^0.2.1",
|
|
45
|
+
"@stdlib/simulate-iter-sawtooth-wave": "^0.2.1",
|
|
46
|
+
"@stdlib/simulate-iter-sine-wave": "^0.2.1",
|
|
47
|
+
"@stdlib/simulate-iter-square-wave": "^0.2.1",
|
|
48
|
+
"@stdlib/simulate-iter-triangle-wave": "^0.2.1",
|
|
49
|
+
"@stdlib/utils-define-read-only-property": "^0.2.1"
|
|
110
50
|
},
|
|
51
|
+
"devDependencies": {},
|
|
111
52
|
"engines": {
|
|
112
53
|
"node": ">=0.10.0",
|
|
113
54
|
"npm": ">2.7.0"
|
package/CITATION.cff
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
cff-version: 1.2.0
|
|
2
|
-
title: stdlib
|
|
3
|
-
message: >-
|
|
4
|
-
If you use this software, please cite it using the
|
|
5
|
-
metadata from this file.
|
|
6
|
-
|
|
7
|
-
type: software
|
|
8
|
-
|
|
9
|
-
authors:
|
|
10
|
-
- name: The Stdlib Authors
|
|
11
|
-
url: https://github.com/stdlib-js/stdlib/graphs/contributors
|
|
12
|
-
|
|
13
|
-
repository-code: https://github.com/stdlib-js/stdlib
|
|
14
|
-
url: https://stdlib.io
|
|
15
|
-
|
|
16
|
-
abstract: |
|
|
17
|
-
Standard library for JavaScript and Node.js.
|
|
18
|
-
|
|
19
|
-
keywords:
|
|
20
|
-
- JavaScript
|
|
21
|
-
- Node.js
|
|
22
|
-
- TypeScript
|
|
23
|
-
- standard library
|
|
24
|
-
- scientific computing
|
|
25
|
-
- numerical computing
|
|
26
|
-
- statistical computing
|
|
27
|
-
|
|
28
|
-
license: Apache-2.0 AND BSL-1.0
|
|
29
|
-
|
|
30
|
-
date-released: 2016
|