-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgen-utils.ts
121 lines (104 loc) · 2.2 KB
/
gen-utils.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
import FftModule from "./fft-asm-lib"
export function* mux(a, b) {
var c = Math.random() > 0.5 ? a : b;
while(true) {
if (yield c) c = (c==a) ? b : a;
}
}
export function* pswitch(p) {
while(true) {
yield (Math.random() < p.next().value) ? true : false;
}
}
export function* pmux(a, b, p) {
var s = pswitch(p), m = mux(a, b);
while (true) {
yield m.next(s.next().value).value;
}
}
export function* constg(x) {
var y;
while (true) {
if (y = yield(x)) x = y;
}
}
export function* smooth(g, n) {
var x = g.next().value
while (1) {
yield x;
x += (g.next().value - x) / n;
}
}
export function* cum(f, ts, initial) {
var c = initial ? initial : 0.0;
while(true) {
c += f.next().value * ts;
yield c;
}
}
// p: Exchange probability per unit time.
export function* osc(phase) {
while(true) {
yield Math.sin(phase.next().value);
}
}
// take populates array d with data points from generator g
// If d is not specified returns a new array.
export function take(g, N, d?) {
var data = (d ? d : new Array(N));
for (var n = 0; n < N; n++) {
data[n] = g.next().value;
}
return data;
}
export function* repeat(c) {
while (true) yield c;
}
export function* continuous(g, N, preload) {
var buff = take(preload ? g : repeat(0), N);
var x = 0;
while(true) {
if (x == N) x = 0;
buff[x] = g.next().value;
yield buff.slice(x + 1, N).concat(buff.slice(0, x + 1));
x++;
}
}
export function* every(g, N) {
var res;
while (true) {
for (var x = 0; x < N; x++)
res = g.next();
yield res.value;
}
}
export function* pad(g, c, N:number) {
var m = take(constg(c), N);
while(true) {
yield g.next().value.concat(m);
}
}
export function* spec(g, N) {
var fftasm = new FftModule(N, true);
for (var real of g) {
var imag = new Float64Array(N);
fftasm.fftmag(real, imag);
yield real;
}
}
export function* map(g, f) {
for (var point of g) {
yield f(point);
}
}
// add takes an iterable of generators and returns a
// the point-by-point sum of their values as a generator
export function* add(gs) {
while(true) {
var sum = 0;
for (var g of gs) {
sum += g.next().value;
}
yield sum;
}
}