-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Closed as not planned
Labels
broadcastApplying a function over a collectionApplying a function over a collection
Description
Calling map! on a single Array argument applies the appropriate 1-arg method of f on each element of A in-place, whereas calling broadcast! on a single Array argument replaces each element of A with the result of calling the 0-arg method of f:
julia> A = [1:10...];
julia> f(x) = 5x
f (generic function with 1 method)
julia> map!(f, A)
10-element Array{Int64,1}:
5
10
15
20
25
30
35
40
45
50
julia> broadcast!(f, A)
ERROR: MethodError: `f` has no method matching f()
in _F_ at broadcast.jl:98
in broadcast! at broadcast.jl:229
julia> A = Array(Float64, 10);
julia> broadcast!(rand, A)
10-element Array{Float64,1}:
0.355975
0.129265
0.203295
0.82875
0.441758
0.740748
0.649689
0.449172
0.620475
0.931164Not sure if this small point bugs anybody, but I thought I'd call it to attention.
Metadata
Metadata
Assignees
Labels
broadcastApplying a function over a collectionApplying a function over a collection