-
Notifications
You must be signed in to change notification settings - Fork 0
/
Functionals.au3
434 lines (277 loc) · 7.52 KB
/
Functionals.au3
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
#cs ---------------------------------------
Author: Robert Schnitman
Date: 2020-06-05
Description: A collection of custom functionals,
which are functions that take other functions
as inputs.
List of Functions:
1. Map()
2. MapJoin()
3. MapCol()
1. ColSums()
2. ColMeans()
4. Map2()
5. filter()
1. gt()
2. gte()
3. lt()
4. lte()
5. eq()
#ce ---------------------------------------
; DEPENDENCY
#include <Array.au3>
;==============================================
#cs ---------------------------------------
Author: Robert Schnitman
Date: 2020-06-05
Function: Map()
Description: A function that maps a function
to each element in an array. In other words,
it "auto-creates" a loop for a function.
This function is intended for arrays.
This function is inspired by Map()
from R.
*WARNING: Cannot handle anonymous functions
at this time. In the future, functions
that require multiple parameters such as
StringReplace() would be possible (perhaps
in a new function called "Vectorize").
#ce ---------------------------------------
Func Map($f, $a)
For $i = 0 to UBound($a) - 1
$a[$i] = $f($a[$i])
Next
Return $a
EndFunc
#cs -- BEGIN TEST
Local $my_array[] = [4, 9, 16, 25]
$my_array2 = Map(Sqrt, $my_array)
_ArrayDisplay($my_array2)
#ce -- END TEST
;==============================================
#cs ---------------------------------------
Author: Robert Schnitman
Date: 2020-06-09
Function: MapJoin()
Description: A function that maps a function
to each element in an array and then joins
them all into a single string.
#ce ---------------------------------------
Func MapJoin($f, $a)
For $i = 0 to UBound($a) - 1
$a[$i] = $f($a[$i])
Next
Return StringJoin($a)
EndFunc
#cs -- BEGIN TEST
#include "RS_String Functions.au3"
Local $my_array[] = [4, 9, 16, 25]
$x = MapJoin(Sqrt, $my_array)
MsgBox(1, 'test', $x)
#ce -- END TEST
;==============================================
#cs ---------------------------------------
Author: Robert Schnitman
Date: 2020-06-09
Functions: MapCol(), ColSums(), ColMeans()
Description: MapCol() maps a function
to each column in an array.
ColSums() applies Sum() to each column.
ColMeans() applies Mean() to each column.
Sum() and Mean() are from RS_Math.au3.
#ce ---------------------------------------
Func MapCol($f, $a) ; $a is assumed to be 2D.
; Initialize loop
Local $x[UBound($a, 2)] = [0]
; For each column, execute a function over it.
For $i = 0 to UBound($a, 2) - 1
$x[$i] = $f(_ArrayExtract($a, -1, -1, $i, $i))
Next
; Because we are executing column-wise, results should Beep
; column-wise as well.
_ArrayTranspose($x)
; Return the output
Return $x
EndFunc
Func ColSums($a)
Return MapCol(Sum, $a)
EndFunc
Func ColMeans($a)
Return MapCol(Mean, $a)
EndFunc
#cs -- BEGIN TEST
#include <Array.au3>
#include "RS_String Functions.au3"
#include "RS_Math.au3"
Local $aArray[4][4]
For $i = 0 To UBound($aArray) - 1
For $j = 0 To UBound($aArray, 2) - 1
$aArray[$i][$j] = $i + $j
Next
Next
$z = MapCol(Sum, $aArray)
_ArrayDisplay($z, "MapCol(Sum, $aArray)")
_ArrayDisplay(ColSums($aArray), "ColSums($aArray)")
_ArrayDisplay(ColMeans($aArray), "ColMeans($aArray)")
#ce -- END TEST
; ===
#cs ---
Author: Robert Schnitman
Date Created: 2020-06-18
Function: Map2()
Description: applies a function
to 2 arrays in parallel. Useful
when you want to apply a function
that accepts 2 inputs.
#ce ---
Func Map2($f, $array1, $array2)
Local $x[Ubound($array1)] = [0]
For $i = 0 to UBound($array1) - 1
$x[$i] = $f($array1[$i], $array2[$i])
Next
Return $x
EndFunc
#cs --- BEGIN TEST
Func Add($x, $y)
Return $x + $y
EndFunc
Local $x = [1, 2, 3]
Local $y = $x
#include <Array.au3>
_ArrayDisplay(Map2(Add, $x, $y))
#ce --- END TEST
; ===
#cs ---
Author: Robert Schnitman
Date: 2020-07-10
Function: MapReduce()
Description: Map
a function to an array and
then reduce it via another
function.
#ce ---
Func MapReduce($x, $f, $o)
Return $o(Map($f, $x))
EndFunc
#cs --- EXAMPLE
Local $y[] = [2, 3, 5, 7]
MsgBox(1, 'test', MapReduce($y, square, Sum))
MsgBox(1, 'test', MapReduce($y, square, StringJoin))
Func square($x)
Return $x*$x
EndFunc
#ce ---
#cs ---
Author: Robert Schnitman
Date: 2020-07-10
Functions: filter(), gt(), gte(), lt(), lte(), eq()
Description:
filter() subsets an array based on a filtering function.
gt() subsets an array for elements greater than a specified value.
gte() subsets an array for elements greater than or equal to a specified value.
lt() subsets an array for elements less than a specified value.
lte() subsets an array for elements less than or equal to a specified value.
eq() subsets an array for elements equal to a specified value.
#ce ---
Func filter($array, $filt_fun, $val)
; Subset array based on a filtering function
Return $filt_fun($array, $val)
EndFunc
; Subset array for elements greater than a specified value.
Func gt($array, $val)
; Create a True/False array to know where to find the desired elements.
Local $test[UBound($array)] = [0]
For $i = 0 to UBound($array) - 1
If $array[$i] > $val Then
$test[$i] = True
Else
$test[$i] = False
EndIf
Next
; Find where the specified condition is True
$indices = StringPos($test, "True")
; The resultant array should only contain the elements where $indices is True.
Local $out[UBound($indices)] = [0]
For $i = 0 to UBound($out) - 1
$out[$i] = $array[$indices[$i]]
Next
Return $out
EndFunc
; Subset array for elements greater than or equal to a specified value.
Func gte($array, $val)
; Create a True/False array to know where to find the desired elements.
Local $test[UBound($array)] = [0]
For $i = 0 to UBound($array) - 1
If $array[$i] >= $val Then
$test[$i] = True
Else
$test[$i] = False
EndIf
Next
; Find where the specified condition is True
$indices = StringPos($test, "True")
; The resultant array should only contain the elements where $indices is True.
Local $out[UBound($indices)] = [0]
For $i = 0 to UBound($out) - 1
$out[$i] = $array[$indices[$i]]
Next
Return $out
EndFunc
; Subset an array for elements being less than a specified value.
Func lt($array, $val)
Local $test[UBound($array)] = [0]
For $i = 0 to UBound($array) - 1
If $array[$i] < $val Then
$test[$i] = True
Else
$test[$i] = False
EndIf
Next
$indices = StringPos($test, "True")
Local $out[UBound($indices)] = [0]
For $i = 0 to UBound($out) - 1
$out[$i] = $array[$indices[$i]]
Next
Return $out
EndFunc
; Subset an array for elements being less than or equal to a specified value.
Func lte($array, $val)
Local $test[UBound($array)] = [0]
For $i = 0 to UBound($array) - 1
If $array[$i] <= $val Then
$test[$i] = True
Else
$test[$i] = False
EndIf
Next
$indices = StringPos($test, "True")
Local $out[UBound($indices)] = [0]
For $i = 0 to UBound($out) - 1
$out[$i] = $array[$indices[$i]]
Next
Return $out
EndFunc
; Subset an array for elements equaling a specified value.
Func eq($array, $val)
Local $test[UBound($array)] = [0]
For $i = 0 to UBound($array) - 1
If $array[$i] = $val Then
$test[$i] = True
Else
$test[$i] = False
EndIf
Next
$indices = StringPos($test, "True")
Local $out[UBound($indices)] = [0]
For $i = 0 to UBound($out) - 1
$out[$i] = $array[$indices[$i]]
Next
Return $out
EndFunc
#cs --- TEST
Local $x[] = [2, 3, 5, 7, 3]
;_ArrayDisplay(gt($x, 4))
;_ArrayDisplay(lt($x, 4))
;_ArrayDisplay(eq($x, 3))
;_ArrayDisplay(filter($x, gt, 3))
#ce ---