问题
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?
回答1:
I can't reproduce your error when running on 0.4.6. My thoughts would be:
- Update to latest version.
- Update all your packages
- Quit and restart julia
- If none of those work, it's conceivable perhaps that the
plotfunction doesn't like the mismatch of argument types. Thus, you could applycollect(x)so that bothxandyare of typeArray.
来源:https://stackoverflow.com/questions/38476478/julia-error-using-pyplot-signal-11-segmentation-fault