Skip to content

Instantly share code, notes, and snippets.

@cth
Created November 8, 2016 21:01
Show Gist options
  • Save cth/bb5079a0e0d5af369f98acbc7e7e2080 to your computer and use it in GitHub Desktop.
Save cth/bb5079a0e0d5af369f98acbc7e7e2080 to your computer and use it in GitHub Desktop.
julia> x=zeros(10)
10-element Array{Float64,1}:
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
julia> map(z->isdefined(xx,z),1:10)
10-element Array{Bool,1}:
true
true
false
false
false
false
false
false
false
false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment