[julia-users] Re: plots problems

2016-05-29 Thread Henri Girard
Thanks, works fine. Le dimanche 29 mai 2016 17:55:48 UTC+2, Henri Girard a écrit : > > Hi, > Ubuntu fresh install here is what I have got > Any help ? > Thanks > Henri > > > using Plots > INFO: Precompiling module Plots... > ^[[AERROR: LoadError: LoadError: BoundsError: attempt to access

[julia-users] Re: Amazon Web Services Build Problem

2016-05-29 Thread Tony Kelman
Amazon Linux's gfortran package looks like it may be broken. It's trying to statically link libgfortran.a into the shared-library libopenspecfun (one of Julia's dependencies), but that libgfortran.a was not built with -fPIC so that isn't possible. Report this as a bug to whoever maintains

Re: [julia-users] Signal / slot (or publish-subscribe) libraries in Julia

2016-05-29 Thread Femto Trader
I don't need something socket based. It's just to exchange messages between same thread, same process. Here is an example API Define signal stop_modified = Signal() Emit signal emit(stop_modified, args) Define slot function slot_on_stop_modified(args) println("stop was modified o $args")

[julia-users] Re: MSys2 package source for BinDeps

2016-05-29 Thread Tony Kelman
There are many variations in how you can build mingw-w64 gcc. C++ libraries break ABI on nearly every GCC version change, so you need to be careful to be consistent. There's also which exception handling model you use, which threading model you use, and other various configuration flags of how

Re: [julia-users] Re: Congratulations to Keno

2016-05-29 Thread Jeffrey Sarnoff
Keno, Sometimes things just seem to go right. One of those times is when you work on Julia. Congratulations on the degree and the job, Jeffrey Sarnoff On Sunday, May 29, 2016 at 8:48:03 AM UTC-4, Jonathan Malmaud wrote: > > What are the health care benefits like? > > On Saturday, May 28,

[julia-users] Amazon Web Services Build Problem

2016-05-29 Thread ABB
Hello - I have been trying to build Julia on an Amazon web services instance and have run into (I think) two problems. The first is that I couldn't not find "gcc-fortran", so I installed "gcc-gfortran" instead, not knowing whether this would be an acceptable substitute. (I am listing this

[julia-users] Re: MSys2 package source for BinDeps

2016-05-29 Thread Charles Barto
I wrote it to get the postgres libraries (libpq and friends). What are the ABI differences? I know msys2 itself uses an abstraction library but the ming64 packages shouldn't have any ABI problems (although some packages may be a different version than those in winRPM) On Saturday, May 28, 2016

Re: [julia-users] Imported modules are brought into Main

2016-05-29 Thread Cedric St-Jean
Thank you. On Sun, May 29, 2016 at 9:21 PM, Yichao Yu wrote: > On Sun, May 29, 2016 at 8:44 PM, Cedric St-Jean > wrote: > > This is probably a conscious decision, but I was surprised that, for any > > module (eg. PyCall): > > Yes, `Main` is the

Re: [julia-users] Imported modules are brought into Main

2016-05-29 Thread Yichao Yu
On Sun, May 29, 2016 at 8:44 PM, Cedric St-Jean wrote: > This is probably a conscious decision, but I was surprised that, for any > module (eg. PyCall): Yes, `Main` is the central place where all imported modules are defined. This directly follows that toplevel modules

[julia-users] Imported modules are brought into Main

2016-05-29 Thread Cedric St-Jean
This is probably a conscious decision, but I was surprised that, for any module (eg. PyCall): module A import PyCall end PyCall # no error - PyCall was brought into Main whereas module A import PyCall end module B PyCall # error - PyCall not defined end Furthermore PyCall = 0 module

Re: [julia-users] Signal / slot (or publish-subscribe) libraries in Julia

2016-05-29 Thread Jacob Quinn
ZMQ.jl? Or maybe you don't need something socket based. -Jacob On Sun, May 29, 2016 at 1:25 PM, Femto Trader wrote: > Hello, > > I'm looking for a Julia library which implements one of these design > pattern: > > - signal / slot > - publish / subscribe > > Python have

[julia-users] Signal / slot (or publish-subscribe) libraries in Julia

2016-05-29 Thread Femto Trader
Hello, I'm looking for a Julia library which implements one of these design pattern: - signal / slot - publish / subscribe Python have many libraries for this purpose for signal / slot signalslot https://github.com/Numergy/signalslot smokesignal https://github.com/shaunduncan/smokesignal

[julia-users] Re: GSL hypergeometric

2016-05-29 Thread lapeyre . math122a
I'm not sure, but you may be able to use PyCall.jl and python mpmath. On Saturday, May 28, 2016 at 12:32:47 AM UTC+2, digxx wrote: > > I'm using GSL for hypergeometric functions but needed to increase the > precision to big() > unfortunately it is not supported so now my question is whether

Re: [julia-users] plots problems

2016-05-29 Thread Tom Breloff
Pkg.checkout("RecipesBase") should fix it. Be aware you're using the new (and very improved) Plots. If you come across bugs, please help by filing issues on github. On Sunday, May 29, 2016, Henri Girard wrote: > Hi, > Ubuntu fresh install here is what I have got > Any

[julia-users] plots problems

2016-05-29 Thread Henri Girard
Hi, Ubuntu fresh install here is what I have got Any help ? Thanks Henri using Plots INFO: Precompiling module Plots... ^[[AERROR: LoadError: LoadError: BoundsError: attempt to access 0-element Array{Any,1} at index [1] while loading /home/pi/.julia/v0.4/Plots/src/recipes.jl, in expression

Re: [julia-users] Re: Congratulations to Keno

2016-05-29 Thread Jonathan Malmaud
What are the health care benefits like? On Saturday, May 28, 2016 at 3:49:31 PM UTC-4, Keno Fischer wrote: > > Thanks for the kind words everyone. I did indeed graduate last Thursday > [1]. > I will now be working full time with Julia Computing, doing more compiler > work, > debugging, other

Re: [julia-users] doc fix: transposition operators in section highlighting difference to R

2016-05-29 Thread Mauro
It would be great if you can submit a pull request for this. It's easy: - log in on github - go to https://github.com/JuliaLang/julia/blob/master/doc/manual/noteworthy-differences.rst - click the pencil icon - edit, when finished a pull request is automatically generated. - there is some

[julia-users] doc fix: transposition operators in section highlighting difference to R

2016-05-29 Thread James Gilbert
In Noteworthy Differences to R it says: - Julia performs matrix transposition using the ' operator and conjugated transposition using the ' operator. Julia’s A.' is therefore

Re: [julia-users] Question: How to Define an Array of Pointers Correct to Transfer it to a C function

2016-05-29 Thread Stefan Schnell
> > Hello Yichao, thank you very much for your reply, it is working in C as expected. I use the following code: //-Begin //-Includes--- #include