Learning to use PyPlot with Julia programming language (Version 0.4.5), I've encountered an error while trying to produce a simple plot:
julia> using PyPlot
julia> x = linspace(0,100,1000)
linspace(0.0,100.0,1000)
julia> y = x.^2;
julia> plot(x,y)
signal (11): Segmentation fault
unknown function (ip: 0x32736)
Segmentation fault (core dumped)
Someone knows what's going on here?
I can't reproduce your error when running on
0.4.6
. My thoughts would be:plot
function doesn't like the mismatch of argument types. Thus, you could applycollect(x)
so that bothx
andy
are of typeArray
.