Re: [julia-users] Re: another new 2D plotting library for Julia

2016-09-06 Thread Henri Girard
Thanks... Much better (quicker)... Here is warning I got, mostly my theme prob not the app : julia version > 0.4 detected non-Windows detected (qwtwc) v 0.3.0 [master]; bn #4; compiled 2016-08-25 12:57:29.505551 /home/pi/.themes/Not Mac/gtk-2.0/gtkrc:700: Incapable de

Re: [julia-users] Re: another new 2D plotting library for Julia

2016-09-05 Thread Igor
Now everything looks like working. new package name is QWTwPlot. You can use Pkg.add("QWTwPlot") or Pkg.clone("https://github.com/ig-or/QWTwPlot.jl.git;). But I still need to add some unit testing. Hope I will be able to handle it on this week. среда, 31 августа 2016 г., 19:27:34

Re: [julia-users] Re: another new 2D plotting library for Julia

2016-08-31 Thread Igor
Oups...looks like I'll have to change package name one more time. It should start with an upper case letter. среда, 31 августа 2016 г., 19:00:08 UTC+3 пользователь Igor написал: > > Tom, thanks for the question; I created a list of (what I think are) > "killer features" here:

Re: [julia-users] Re: another new 2D plotting library for Julia

2016-08-31 Thread Igor
Tom, thanks for the question; I created a list of (what I think are) "killer features" here: https://github.com/ig-or/qwtwplot.jl/wiki/features Best regards, Igor среда, 31 августа 2016 г., 16:05:23 UTC+3 пользователь Tom Breloff написал: > > Hi Igor... any idea how your package compares to

Re: [julia-users] Re: another new 2D plotting library for Julia

2016-08-31 Thread Tom Breloff
Hi Igor... any idea how your package compares to other libraries like GR.jl? What are the "killer features" which inspired you to work on this? On Wed, Aug 31, 2016 at 8:55 AM, Igor wrote: > Package name changed! now new package name: https://github.com/ig-or/ >

[julia-users] Re: another new 2D plotting library for Julia

2016-08-31 Thread Igor
Package name changed! now new package name: https://github.com/ig-or/qwtwplot.jl ("*.jl*" added) Also, RPM installation package for underlying qwtw "C" library for Fedora-24 x64 added; examples and Readme files slightly changed. Hope this will be included in global Metadata:

[julia-users] Re: another new 2D plotting library for Julia

2016-08-26 Thread Henri Girard
Thanks, I am updating. For julia jupyter is IJulia. Just Pkg.add("IJulia") will install it. They are developing a promising tool jupyterlab which enable to work with most kernels. It's an improved jupyter notebook at the moment in alpha preview. But apparently it develops quiet quickly. Now I

Re: [julia-users] Re: another new 2D plotting library for Julia

2016-08-26 Thread Igor
Henri, I never used jupyter notebooks - only Juno LightTable and Atom editor. But I'll try to see what can be done for plot-windows integration. For linux-related testing I'm using a virtual machine with Fedora Linux. I changed the package a bit, and fix a number of bugs in qwtw "C" library. So

Re: [julia-users] Re: another new 2D plotting library for Julia

2016-08-26 Thread Henri Girard
Your welcome ! I am wondering : As I use jupyter notebook is there a way to get the graphs embedded in the notebook and not getting windows outside ? This app makes beautifull graphics. I installed too the pyqwt version. What linux flavor are you using (I presume fedora ?). I use the git

[julia-users] Re: another new 2D plotting library for Julia

2016-08-25 Thread Igor
Thanks Henri! I will install julia 0.5 rc3 and use it for my internal testing. Before I worked on version 4 >

[julia-users] Re: another new 2D plotting library for Julia

2016-08-25 Thread Henri Girard
and the last one QTSMain::runQT() start [/home/pi/julia/usr/bin/] WARNING: bytestring(p::Union{Ptr{Int8},Ptr{UInt8}}) is deprecated, use unsafe_string(p) instead. Le jeudi 25 août 2016 12:01:30 UTC+2, Igor a écrit : > > Hello! > I made another 2D plotting library for Julia. Please try to test

[julia-users] Re: another new 2D plotting library for Julia

2016-08-25 Thread Henri Girard
You got it perfect :) Workd like a charm ... Just some deprecating warning... (I use julia 0.5 rc3 console for testing and ijulia for better reading ) I change @unix with @static is_unix() Base.ASCIIString is deprecated, use String instead (I haven't found it yet) Thanks a lot for sharing :)

[julia-users] Re: another new 2D plotting library for Julia

2016-08-25 Thread Igor
Henry, I'll try to add this. Best regards, Igor четверг, 25 августа 2016 г., 14:04:28 UTC+3 пользователь Henri Girard написал: > > Hi, > I tried compiling it on ubuntu xenial 16.04, following your description, > it works fine. I would like to have it being able to install in >

[julia-users] Re: another new 2D plotting library for Julia

2016-08-25 Thread Henri Girard
Only figure 5and 6 are working correctly, other windows show only graphic coordonnees Regards Henri julia> using qwtwplot julia> qwtwStart() # start 'qwtwc' library julia> # draw thin blue 'sinus': tMax = 10. 10.0 julia> t = Array(linspace(0.,tMax, 1)); julia> n = length(t) 1

Re: [julia-users] Re: another new 2D plotting library for Julia

2016-08-25 Thread Michele Zaffalon
Did you notice that Igor said Windows 7 x64 only for the moment? On Thu, Aug 25, 2016 at 1:27 PM, Henri Girard wrote: > That's what I got in julia, I put the so lib in /usr/lib/ > The linux app qwtw is working properly. > > > > julia> using qwtwplot > ERROR: LoadError:

[julia-users] Re: another new 2D plotting library for Julia

2016-08-25 Thread Henri Girard
That's what I got in julia, I put the so lib in /usr/lib/ The linux app qwtw is working properly. julia> using qwtwplot ERROR: LoadError: KeyError: key "ALLUSERSPROFILE" not found in access_env(::Base.##339#340, ::String) at ./env.jl:45 in getindex(::Base.EnvHash, ::String) at ./env.jl:73 in

[julia-users] Re: another new 2D plotting library for Julia

2016-08-25 Thread Henri Girard
Hi, I tried compiling it on ubuntu xenial 16.04, following your description, it works fine. I would like to have it being able to install in -DCMAKE_INSTALL_PREFIX=/usr but it says that manually variables are not used. Could you add it ? In between I will link it in /usr/bin if necessary Thanks