-
-
Notifications
You must be signed in to change notification settings - Fork 804
/
Copy pathrepl.txt
71 lines (53 loc) · 1.61 KB
/
repl.txt
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
{{alias}}( x, shape, fcn[, thisArg] )
Applies a function to elements in a two-dimensional nested input array and
assigns results to elements in a new two-dimensional nested output array.
Parameters
----------
x: ArrayLikeObject
Input nested array.
shape: Array<integer>
Array shape.
fcn: Function
Function to apply.
thisArg: any (optional)
Function execution context.
Returns
-------
out: Array<Array>
Output nested array.
Examples
--------
> var x = [ [ -1.0, -2.0 ], [ -3.0, -4.0 ] ];
> var shape = [ 2, 2 ];
> var y = {{alias}}( x, shape, {{alias:@stdlib/math/base/special/abs}} )
[ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ]
{{alias}}.assign( x, y, shape, fcn[, thisArg] )
Applies a function to elements in a two-dimensional nested input array and
assigns results to elements in a two-dimensional nested output array.
Parameters
----------
x: ArrayLikeObject
Input nested array.
y: ArrayLikeObject
Output nested array.
shape: Array<integer>
Array shape.
fcn: Function
Function to apply.
thisArg: any (optional)
Function execution context.
Returns
-------
out: ArrayLikeObject
Output nested array.
Examples
--------
> var x = [ [ -1.0, -2.0 ], [ -3.0, -4.0 ] ];
> var y = [ [ 0.0, 0.0 ], [ 0.0, 0.0 ] ];
> var shape = [ 2, 2 ];
> var out = {{alias}}.assign( x, y, shape, {{alias:@stdlib/math/base/special/abs}} )
[ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ]
> var b = ( out === y )
true
See Also
--------