Created
November 8, 2016 21:01
-
-
Save cth/bb5079a0e0d5af369f98acbc7e7e2080 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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