[julia-users] Simulink alternative, based on Julia?

2016-11-01 Thread Uwe Fechner
implemented with web technologies, based on Atom? Any ideas welcome. Uwe Fechner

[julia-users] Re: [Announcement] Moving to Discourse (Statement of Intent)

2016-11-14 Thread Uwe Fechner
If you move to discourse, the links on the Julia homepage in the section "Community->Mailing Lists" should be updated. This did not happen for Julia-Dev. Uwe On Tuesday, November 1, 2016 at 2:43:50 PM UTC+1, Valentin Churavy wrote: > > The Julia community has been growing rapidly over the last

[julia-users] Benchmarking a function with parameters

2016-11-14 Thread Uwe Fechner
Hello, why does the following code not work (no benchmark result shown, no error message or warning): using BenchmarkTools function add2!(vec, result) """ Calculate the sum of two 3d vectors and store the result in the second parameter. """ [result[i] = vec[i] + result[i] for i in [1, 2

Re: [julia-users] Benchmarking a function with parameters

2016-11-15 Thread Uwe Fechner
ov 14, 2016 at 8:16 AM, Uwe Fechner > wrote: > > Hello, > > > > why does the following code not work (no benchmark result shown, no > error > > message or warning): > > using BenchmarkTools > > > > function add2!(vec, result) > >

[julia-users] Re: [Announcement] Moving to Discourse

2016-11-16 Thread Uwe Fechner
Hello, how can I paste Julia code in Discourse, such that it has syntax highlighting? Uwe On Wednesday, November 16, 2016 at 3:45:55 AM UTC+1, Valentin Churavy wrote: > > I would like to accelerate the move of `julia-users` to > https://discourse.julialang.org. In the original announcement ( >

[julia-users] Re: [Announcement] Moving to Discourse

2016-11-16 Thread Uwe Fechner
Thanks! On Wednesday, November 16, 2016 at 12:39:02 PM UTC+1, Johan Sigfrids wrote: > > You can put the code inside triple back ticks: > > ``` > function hello() > "Hello" > end > ``` > > On Wednesday, November 16, 2016 at 12:49:09 PM UTC+2, Uwe Fechne

[julia-users] Progress of 0.4-projects ?

2015-01-23 Thread Uwe Fechner
Hello, one question: What is the status of the 0.4-projects? Even though the development of Julia is very fast and a lot of pull requests are merged every week, I did not see any progress with the 0.4-projects in the last three months: Still 11 open issues: https://github.com/JuliaLang/julia/issu

[julia-users] Re: isa should be user friendlier

2015-02-17 Thread Uwe Fechner
eltype([1f0]) == Float32 is working, too. On Tuesday, February 17, 2015 at 8:39:05 PM UTC+1, Simon Danisch wrote: > > *eltype([1f0]) <: Float32* should do the trick... > > Am Dienstag, 17. Februar 2015 17:03:12 UTC+1 schrieb J Luis: >> >> julia> isa(1.0f0, Float32) >> true >> >> julia> isa([1.0f0]

Re: [julia-users] Preferred Julian equivalent of C enums?

2015-03-01 Thread Uwe Fechner
Is there a way to use the new @enum macro in Julia 0.3 projects? Could it be added to Compat.jl? On Saturday, February 28, 2015 at 9:53:02 PM UTC+1, Jameson wrote: > > https://github.com/JuliaLang/julia/pull/10168 > > On Sat Feb 28 2015 at 3:45:31 PM Kirill Ignatiev > wrote: > >> There are librar

Re: [julia-users] Any hope for a printf() or sprintf() function instead of the macro?

2015-03-23 Thread Uwe Fechner
Doesn't using the following package solves this issue? https://github.com/lindahua/Formatting.jl On Monday, March 23, 2015 at 2:07:11 PM UTC+1, Milan Bouchet-Valat wrote: > > Le lundi 23 mars 2015 à 05:50 -0700, Daniel Carrera a écrit : > > Dear all, > > > > > > For me personally my biggest ir

Re: [julia-users] Re: Julia and Microsoft Visual Studio

2015-05-09 Thread Uwe Fechner
Well, only "Visual Studio Code" is available for Linux (and Mac). https://code.visualstudio.com/ This is quite different from "Visual Studio" and has a lot less features. Uwe Am 09.05.2015 um 14:03 schrieb Páll Haraldsson: On Monday, December 1, 2014 at 7:39:20 PM UTC, David Anthoff wrote:

[julia-users] WebGL with Julia?

2015-06-22 Thread Uwe Fechner
create output, but does not yet support interactive input. For Julia, there is Escher.jl, but it does not (yet) support WebGL. Any suggestions? Uwe Fechner, TU Delft

[julia-users] Re: PSA: Changes to Base Docstrings

2015-08-08 Thread Uwe Fechner
Hello, what does PSA in the title mean? Wikipedia didn't help: https://en.wikipedia.org/wiki/Psa Uwe Am Sonntag, 2. August 2015 21:22:03 UTC+2 schrieb Mike Innes: > > Hi All, > > As of #11943 , Julia uses > the shiny new doc system to provide help

[julia-users] Re: ANN: JuliaGPU mailing list

2015-08-16 Thread Uwe Fechner
Hello, is there a reason, why only group members can read this group? The usual policy is, that everybody can read and only group members can post. Regards: Uwe Am Samstag, 15. August 2015 23:46:25 UTC+2 schrieb Pontus Stenetorp: > > Everyone, > > I have gradually been pushed towards GPU computi

[julia-users] Strange error when using docile on 0.3

2015-08-17 Thread Uwe Fechner
function with the same name as a function in base in a package? Any hints welcome. Uwe Fechner

[julia-users] Re: Strange error when using docile on 0.3

2015-08-17 Thread Uwe Fechner
then you won’t have this problem. Bare > docstrings will be the preferred way to document things going forward > anyway after 0.4 is released, unless you need to do more complex > documentation tasks. > > — Mike > On Monday, 17 August 2015 17:05:52 UTC+2, Uwe Fechner wrote: >

[julia-users] Re: Strange error when using docile on 0.3

2015-08-17 Thread Uwe Fechner
I have to correct myself. It works now on 0.4, on 0.3 I get: help?> nm.sum INFO: Loading help data... sum (generic function with 1 method) julia> Not exactly what I want. Am Montag, 17. August 2015 17:58:01 UTC+2 schrieb Uwe Fechner: > > Thanks for the quick response. > I trie

[julia-users] Re: Strange error when using docile on 0.3

2015-08-17 Thread Uwe Fechner
d > http://lexiconjl.readthedocs.org/en/stable/manual/ for details. > > — Mike > -- MikeOn Monday, 17 August 2015 18:06:45 UTC+2, Uwe Fechner wrote: >> >> I have to correct myself. >> It works now on 0.4, on 0.3 I get: >> >> help?> nm.sum >> INFO: Loading help data... >

[julia-users] How to define an array of floating point numbers?

2015-08-18 Thread Uwe Fechner
Hello, I want to write a function, that can operate on any one dimensional array of floating point numbers. The following works, but only for Float64: function sum(x::Array{Float64,1}) The following does not work: function sum(x::Array{AbstractFloat,1}) Any idea? Uwe

[julia-users] Re: How to define an array of floating point numbers?

2015-08-18 Thread Uwe Fechner
Ok, the following definition works on Julia 0.4, but not with 0.3: FloatArray = Union{Array{Float32, 1}, Array{Float64, 1}} function sum(x::FloatArray). Any idea? Am Dienstag, 18. August 2015 11:07:16 UTC+2 schrieb Uwe Fechner: > > Hello, > > I want to write a function, that can op

[julia-users] Re: How to define an array of floating point numbers?

2015-08-18 Thread Uwe Fechner
Ok, the following works for 0.3 and 0.4: FloatArray = Union(Array{Float32, 1}, Array{Float64, 1}) Is this the best way to define an array of floating point numbers? Am Dienstag, 18. August 2015 11:22:50 UTC+2 schrieb Uwe Fechner: > > Ok, the following definition works on Julia 0.4, but no

Re: [julia-users] Re: How to define an array of floating point numbers?

2015-08-18 Thread Uwe Fechner
Thank's a lot, that is cool. Am Dienstag, 18. August 2015 11:29:44 UTC+2 schrieb Pontus Stenetorp: > > On 18 August 2015 at 10:22, Uwe Fechner > wrote: > > > > Ok, the following definition works on Julia 0.4, but not with 0.3: > > > > FloatArray = Uni

[julia-users] Problems with docile on travis / conditional require?

2015-08-18 Thread Uwe Fechner
Hello, I solved my problems with Docile on my local machine (see: https://groups.google.com/forum/#!topic/julia-users/ukvwAI52u0Y ), but now it appears on travis: My pull request passes on Julia 0.3, but fails on Julia 0.4: https://github.com/mlubin/NaNMath.jl/pull/4 Here you can see the error

[julia-users] Julia nightlies

2015-08-18 Thread Uwe Fechner
Hello, the nightly Julia builds from: https://launchpad.net/~staticfloat/+archive/ubuntu/julianightlies are currently quiet outdated. As far as I understand they should be auto-generated every night from the head branch of the Julia repository. This seams to be currently broken. Any idea, why

[julia-users] Re: Julia nightlies

2015-08-18 Thread Uwe Fechner
a long > time. We should probably remove that link from our website. > > -viral > > On Tuesday, August 18, 2015 at 9:52:17 PM UTC+5:30, Uwe Fechner wrote: >> >> Hello, >> >> the nightly Julia builds from: >> https://launchpad.net/~staticfloat/+archive/ubunt

[julia-users] Re: Julia nightlies

2015-08-19 Thread Uwe Fechner
Gagnon wrote: >> >> OK, I'm gonna git pull & make then. That's the only way, right? >> >> On Wednesday, August 19, 2015 at 4:54:05 AM UTC+10, Uwe Fechner wrote: >>> >>> Well, removing the link from the website does not help with the travis >

Re: [julia-users] Julia nightlies

2015-08-19 Thread Uwe Fechner
shallow ]]; then git fetch --unshallow; fi > # - julia -e 'Pkg.clone(pwd()); Pkg.build("MyPackage"); > Pkg.test("MyPackage"; coverage=true)' > > > > > > > Am 19.08.2015 um 09:19 schrieb Uwe Fechner >: > > > Ok, our c

Re: [julia-users] Re: Julia nightlies

2015-08-20 Thread Uwe Fechner
om the website does not help with the travis >>>>> failures: >>>>> https://travis-ci.org/mlubin/NaNMath.jl/jobs/76114115 >>>>> >>>>> Regards: Uwe >>>>> >>>>> Am Dienstag, 18. August 2015 18:46:31 UTC+2 schrieb

[julia-users] Creating a new version of a package

2015-08-22 Thread Uwe Fechner
Hello, I was invited to tag a new version of the package NaNMath.jl . https://github.com/mlubin/NaNMath.jl Does anyone know, how to do this? Best regards: Uwe Fechner

Re: [julia-users] Creating a new version of a package

2015-08-22 Thread Uwe Fechner
edocs.org/en/latest/manual/packages/ > > It works for 0.3 as well as 0.4. > > t > Le 2015-08-22 12:20, "Uwe Fechner" > a > écrit : > >> Hello, >> >> I was invited to tag a new version of the package NaNMath.jl . >> https://github.com/m

Re: [julia-users] Creating a new version of a package

2015-08-22 Thread Uwe Fechner
Well, it is not that easy. I did: Pkg.tag("NaNMath",:minor) which worked well. Pkg.pubish() did not work. First I had to do: git config --global github.user ufechner7 which worked fine. Than I had to do: Pkg.add("JSON") It would be nice if the error message of the missing JSON package would

Re: [julia-users] Creating a new version of a package

2015-08-22 Thread Uwe Fechner
all of that works, then go back to the GitHub page for your fork, and click the “pull request” link. But I still would like to understand why Pkg.publish() fails. Uwe Am Samstag, 22. August 2015 19:42:25 UTC+2 schrieb Uwe Fechner: > > Well, it is not that easy. > > I did: > Pkg

Re: [julia-users] Creating a new version of a package

2015-08-23 Thread Uwe Fechner
; > > On Saturday, August 22, 2015 at 11:02:53 AM UTC-7, Uwe Fechner wrote: > > > > > > Ok, publishing METADATA manually worked: > > > > > > Publishing METADATA manually > > > > > > If Pkg.publish() > > > < > > >

Re: [julia-users] Re: What is the fastest way to perform 100k blocking IO operations in parallel?

2015-08-24 Thread Uwe Fechner
Did you try the DNS servers from Google, e.g. 8.8.8.8 ? I never saw a reply that needs more than one second. (Well, in our university network.) Am Montag, 24. August 2015 16:25:06 UTC+2 schrieb Seth: > > Name resolution delays are generally an issue with network latency. Trying > to resolve 1000

[julia-users] Re: Very poor performance on Linux

2015-08-26 Thread Uwe Fechner
Can you tell a little bit more about your machine? Which CPU? How much RAM? Which Linux version? Uwe Am Mittwoch, 26. August 2015 17:12:48 UTC+2 schrieb Chris: > > Hello, > > I recently got access to a new Linux machine, and I've been trying to run > some of my code there. I tried downloading a

[julia-users] Re: [ANN] Conda.jl: using conda package manager for Julia

2015-09-02 Thread Uwe Fechner
Julia does have a very good internal package manager, that can also install binary dependencies cross-platform. Why would you want to add another package manager? Am Dienstag, 1. September 2015 14:42:31 UTC+2 schrieb Luthaf: > > Hi Julians! > > I am happy to present you the Conda.jl >

[julia-users] 0.4 enters stabilizing period

2015-09-09 Thread Uwe Fechner
Hello, there are no more issues blocking the 0.4 release. https://github.com/JuliaLang/julia/milestones/0.4.0 Hooray! Waiting for the release candidate. Uwe Fechner, TU Delft

[julia-users] Julia syntax highlighting for gedit

2014-07-29 Thread Uwe Fechner
ion: Error compiling the regular expression ... Escape sequences, that influence capitalization (\l, \L, \u, \U) are not allowed at this place.) Any idea how to fix this? Best regards: Uwe Fechner

Re: [julia-users] Julia syntax highlighting for gedit

2014-07-29 Thread Uwe Fechner
Thanks, this works already nicely! Best regards: Uwe On Tuesday, July 29, 2014 12:04:06 PM UTC+2, Milan Bouchet-Valat wrote: > > Le mardi 29 juillet 2014 à 02:46 -0700, Uwe Fechner a écrit : > > Hello, > > > > I am trying to teach gedit to understand the Julia syntax

[julia-users] Re: GSoC: Julia IDE Progress update

2014-08-04 Thread Uwe Fechner
I tried both LightTable and JuliaStudio. LightTable is lacking an integrated console, which is a pity. But on the other hand you can evaluate single expressions in the code editor directly. The released version of JuliaStudio does not support Julia 0.3rc yet, so you have to compile it yourself,

[julia-users] 0.3 RC2 released - website not yet updated

2014-08-07 Thread Uwe Fechner
Hello, on the download web page (http://julialang.org/downloads/) there is still RC1 announced, but if you click on any of the download links you get the 0.3 RC2 version. Perhaps the web site should be updated. Best regards and thanks for the good work! Uwe

[julia-users] Calling julia functions from Python

2014-09-09 Thread Uwe Fechner
j.run("2+2") --- RuntimeError Traceback (most recent call last) in () > 1 j.run("2+2") RuntimeError: Julia exception: MethodError(run,("2+2",)) In [4]: Any id

Re: [julia-users] Calling julia functions from Python

2014-09-09 Thread Uwe Fechner
lia.run`. > > On Tue, Sep 9, 2014 at 7:16 AM, Uwe Fechner > wrote: > >> Hello, >> >> I have a function, that is running much faster in Julia then in Python. >> >> Now I want to call it from my (large) Python program. >> >> I tried to do this, us

Re: [julia-users] Calling julia functions from Python

2014-09-09 Thread Uwe Fechner
ght open a pyjulia issue for this. Regards: Uwe On Tuesday, September 9, 2014 2:18:49 PM UTC+2, Uwe Fechner wrote: > > Ok, no exeption any more if I use j.call instead of j.run. > > But the result is wrong: > > import julia > j=julia.Julia() > In [3]: j.call("2+2&quo

Re: [julia-users] Re: Control system library for Julia?

2014-09-15 Thread Uwe Fechner
?). I doubt Julia qualifies due to the garbage >>> collection, but does anyone know if Julia has some sort of way to JIT Julia >>> expressions to code that does ~not have any garbage collection? If so, is >>> there a way to export them as object files and link agai

Re: [julia-users] Re: Control system library for Julia?

2014-09-15 Thread Uwe Fechner
gt;>> On Sunday, September 14, 2014 12:58:36 PM UTC-7, Andrew Wagner wrote: >>>>>> >>>>>> Hello again Uwe! >>>>>> >>>>>> It's fun running into someone I know on a language geek forum :) I'm >>&

Re: [julia-users] Re: Control system library for Julia?

2014-09-15 Thread Uwe Fechner
http://www.kitepower.eu/images/stories/publications/fechner12b.pdf U. Fechner and R. Schmehl, “Feed-Forward Control of Kite Power Systems,” Journal of Physics, 2014. http://iopscience.iop.org/1742-6596/524/1/012081 Uwe Fechner On Monday, September 15, 2014 3:44:21 PM UTC+2, Patrick O'Leary wrot

Re: [julia-users] Re: Article on `@simd`

2014-09-17 Thread Uwe Fechner
Any idea when the vectorization of 64 bit double values will be supported? (I work a lot with 3D double vectors, they could be calculated with one command in the Haswell CPU's. ) On Wednesday, September 17, 2014 4:48:26 PM UTC+2, Arch Robison wrote: > > There is support in LLVM 3.5 for remarks

[julia-users] Re: a good IDE for Julia ? (Julia Studio does not work with Julia v 0.3.0)

2014-09-19 Thread Uwe Fechner
If you compile Julia Studio from source it should work with Julia 0.3. See: https://github.com/forio/julia-studio/issues/241 Regards: Uwe On Friday, September 19, 2014 10:58:26 AM UTC+2, Ján Dolinský wrote: > > Hello guys, > > After upgrading to Julia 0.3.0 Julia Studio stopped working (I change

[julia-users] Re: a good IDE for Julia ? (Julia Studio does not work with Julia v 0.3.0)

2014-09-19 Thread Uwe Fechner
I think that this branch is already merged into the master branch: https://github.com/forio/julia-studio/tree/julia-0.3-compatibility On Friday, September 19, 2014 11:54:41 AM UTC+2, Uwe Fechner wrote: > > If you compile Julia Studio from source it should work with Julia 0.3. See: &

Re: [julia-users] Re: Article on `@simd`

2014-09-24 Thread Uwe Fechner
enabled by default. But it's possible we might evolve a way to turn it on > for specially marked regions of code, or speed up how fast it can reject > uninteresting code. > > On Wednesday, September 17, 2014 10:10:56 AM UTC-5, Uwe Fechner wrote: >> >> Any idea when the

[julia-users] Gtk.jl not working on Ubuntu 12.04, 64 bits

2014-09-28 Thread Uwe Fechner
_AFFINITY Sandybridge) LAPACK: liblapack.so.3 LIBM: libopenlibm LLVM: libLLVM-3.3 julia> Any idea how to fix this? Best regards: Uwe Fechner

Re: [julia-users] Gtk.jl not working on Ubuntu 12.04, 64 bits

2014-09-28 Thread Uwe Fechner
ould be updated; these days, just Pkg.add("Gtk") should > be > sufficient. > > --Tim > > On Sunday, September 28, 2014 02:42:36 AM Uwe Fechner wrote: > > Hello, > > > > I installed Gtk.jl as described at https://github.com/JuliaLang/Gtk.jl >

Re: [julia-users] Gtk.jl not working on Ubuntu 12.04, 64 bits

2014-09-28 Thread Uwe Fechner
> > The error message is on glib. Check, where it resides and what version > number it has. Then see, if deps,jl is matching. > > On Sunday, September 28, 2014 2:15:47 PM UTC+2, Uwe Fechner wrote: >> >> I updated all Ubuntu packages, deleted the .julia folder and reinsta

Re: [julia-users] Gtk.jl not working on Ubuntu 12.04, 64 bits

2014-09-28 Thread Uwe Fechner
("Gtk") will be helpful. You will have to > "using BinDeps" first, of course. > On Sep 28, 2014 9:39 AM, "Jameson Nash" > > wrote: > >> Is BinDeps generating a corrupt `deps.jl` file? Try deleting that and >> seeing if it works. >> &g

Re: [julia-users] Re: Control system library for Julia?

2014-09-28 Thread Uwe Fechner
://michaelrbernste.in/2013/06/03/real-time-garbage-collection-is-real.html https://lwn.net/images/conf/rtlws-2011/proc/Klotzbuecher.pdf Best regards: Uwe Fechner On Sunday, September 28, 2014 4:53:48 PM UTC+2, Steven Sagaert wrote: > > GC will always be non-deterministic. For "hard" real time

[julia-users] Re: Import issue

2014-09-29 Thread Uwe Fechner
If you want to get any advice, please post the script (or put it into a gist repository). And then explain exactly the steps of running the script, that are causing problems. On Monday, September 29, 2014 10:58:56 AM UTC+2, Magnus Lie Hetland wrote: > > Just wrote a command-line tool that impor

Re: [julia-users] Re: Control system library for Julia?

2014-09-29 Thread Uwe Fechner
most everything a GC >> does except for collecting cycles but circular datastructures are rare and >> you can always break the cycles yourself so this isn't a big deal in >> practice. >> >> On Sunday, September 28, 2014 9:10:39 PM UTC+2, Uwe Fechner wrote: >&g

Re: [julia-users] Gtk.jl not working on Ubuntu 12.04, 64 bits

2014-09-29 Thread Uwe Fechner
nd > seeing if it works. > > On Sun, Sep 28, 2014 at 8:42 AM, Uwe Fechner > wrote: > >> I found: >> ufechner@uwe-desktop64:/lib/x86_64-linux-gnu$ ls libgl* >> libglib-2.0.so.0 libglib-2.0.so.0.3200.4 >> >> The file ~/.julia/v0.3/Gtk/deps/ext_glib.j

Re: [julia-users] Re: Control system library for Julia?

2014-09-29 Thread Uwe Fechner
; Simon > > On Monday, September 29, 2014 1:37:13 PM UTC-4, Uwe Fechner wrote: >> >> For me it would be important to reach the real-time performance of >> Python/ Numba with Julia: >> >> I would like to port my flight simulator ( >> https://bitbucket.org/uf

Re: [julia-users] Re: Control system library for Julia?

2014-10-01 Thread Uwe Fechner
o guarantee that you're > pre-compiled all the possible methods that might get dispatched to. > > > peace, > s > > On Mon, Sep 29, 2014 at 4:25 PM, Stefan Karpinski > wrote: > >> On Mon, Sep 29, 2014 at 4:21 PM, Uwe Fechner > > wrote: >> >>

[julia-users] PyPlot does not work with Julia Version 0.4.0-rc1+5

2015-09-10 Thread Uwe Fechner
ing.jl:84 in _require_from_serialized at ./loading.jl:109 in require at ./loading.jl:186 during initialization of module PyPlot julia> Any idea? Uwe Fechner

[julia-users] Re: PyPlot does not work with Julia Version 0.4.0-rc1+5

2015-09-10 Thread Uwe Fechner
I tried it also with Julia 0.3.11. Same error. If I use ipython, import matplotlib works fine. In [2]: matplotlib.__version__ Out[2]: '1.4.3' In [3]: I used conda on ubuntu 14.04, 64 bit to install matplotlib. Am Donnerstag, 10. September 2015 18:06:30 UTC+2 schrieb Uwe Fechner:

Re: [julia-users] PyPlot does not work with Julia Version 0.4.0-rc1+5

2015-09-10 Thread Uwe Fechner
module PyPlot Any idea? Am Donnerstag, 10. September 2015 18:20:52 UTC+2 schrieb Mauro: > > Works for me. The error suggests that matplotlib doesn't work. Can you > import in python itself? > > $ python > > >>> import matplotlib > > On Thu, 20

[julia-users] Re: PyPlot does not work with Julia Version 0.4.0-rc1+5

2015-09-10 Thread Uwe Fechner
boot.jl:260 in include_from_node1 at ./loading.jl:271 in require at ./loading.jl:210 during initialization of module PyPlot while loading /home/ufechner/.julia/v0.4/PyPlot/src/PyPlot.jl, in expression starting on line 653 Any idea? Uwe Fechner Am Donnerstag, 10. September 2015 18:51:32 UTC

[julia-users] Re: IDE for Julia

2015-09-13 Thread Uwe Fechner
While I understand your point, the success of a new programming language depends on the availability of a good IDE. Apart from the projects, mentioned so far I also want to mention spyder. Integrating Julia support would be easy and it would make the transition for Python users easier. Not every

Re: [julia-users] Re: IDE for Julia

2015-09-14 Thread Uwe Fechner
Well, Gambas for example: https://en.wikipedia.org/wiki/Gambas Am Montag, 14. September 2015 14:54:27 UTC+2 schrieb Sheehan Olver: > > Are there any open source languages with a "good" native IDE? > > I think IDEs are probably too painful to develop unless paid to do so.. > > > On 14 Sep 2015, a

Re: [julia-users] Re: IDE for Julia

2015-09-18 Thread Uwe Fechner
I like QT a lot. There is more then one open source, QT based IDE out there, e.g. QT Creator. QT has a GUI builder, that is much better then the GUI builders for GTK (in my opinion). And you can use the java-script like QML language for building the user interface, if you want to. Tutorial for

Re: [julia-users] Re: IDE for Julia

2015-09-21 Thread Uwe Fechner
that JuliaStudio was a nice start (also based on > QtCreator). I wish a group would fork it and develop it further in the > direction of RStudio. > > On Friday, September 18, 2015 at 10:08:23 AM UTC+2, Christof Stocker > wrote: >> >> I would be a huge fan of an RStudio l

Re: [julia-users] Re: IDE for Julia

2015-09-21 Thread Uwe Fechner
On their homepage they say: "As a desktop replacement for Julia Studio, Forio recommends Juno <http://www.junolab.org>" Uwe Am Montag, 21. September 2015 18:49:13 UTC+2 schrieb Daniel Carrera: > > How do you know they are not interested? > > On 21 September 2015 at

Re: [julia-users] Re: IDE for Julia

2015-09-23 Thread Uwe Fechner
ed before Julia 0.5. With "available by default" I mean, that a pre-compiled version of Julia can be used. Am Mittwoch, 23. September 2015 12:46:21 UTC+2 schrieb Páll Haraldsson: > > Sorry, kind of of-topic for the thread, mostly about Cxx.jl/C++: > > On Friday, September

Re: [julia-users] Re: IDE for Julia

2015-09-23 Thread Uwe Fechner
sday, September 23, 2015 at 11:30:45 AM UTC, Uwe Fechner wrote: >> >> Keno's Cxx.jl " currently requires the head version of LLVM. This is >> fragile, but furthermore the compilation with >> the newest version of LLVM is very slow. >> > > A. > You me

[julia-users] Re: Optimal Control using Dynamic Programming

2015-09-24 Thread Uwe Fechner
Hello, as far as I know, there is no ready-made package for optimal control. There is one package on control design: https://github.com/JuliaControl/Control.jl And there are a lot of packages for solving optimization problems. Could you be a little bit more specific about your problem? How do yo

[julia-users] Re: Crowdsourced Julia development

2015-09-25 Thread Uwe Fechner
I just created a bounty for implementing a low latency garbage collector: https://www.bountysource.com/issues/5020251-implement-a-low-latency-incremental-garbage-collector Uwe Am Freitag, 25. September 2015 17:31:11 UTC+2 schrieb Jonathan Malmaud: > > $5 to the first person to take transposes ser

Re: [julia-users] Re: Julia garbage collection - question on status and future (and interaction when using with other languages)

2015-10-24 Thread Uwe Fechner
You wrote: "... note that `malloc/free` are not hard real time either, you basically cannot have any sort of memory allocation for that. " It is an old myth, that you cannot have any memory allocation for hard real-time applications. For me, and probably also for other people who do real-time si

[julia-users] Re: Communicate thru COM Ports (Serial)

2015-10-29 Thread Uwe Fechner
Did you try: https://github.com/rennis250/Arduino.jl On Thursday, October 29, 2015 at 1:49:32 PM UTC+1, endowdly wrote: > > I'd like to read and write text and strings (STDIN and STDOUT) via COM1 or > COM2 (standard baud rates). > > Short story short, I'd like to control one or two systems with

[julia-users] Re: Using Julia for real time astronomy

2016-05-30 Thread Uwe Fechner
I think, that would be difficult. As soon as you use any packages for image conversion or estimation you have to assume that they use dynamic memory allocation. The garbage collector of Julia is fast, but not suitable for hard real-time requirements. Implementing a garbage collector for hard re

[julia-users] Re: ANN: POSIXClock - writing hard real-time Julia code

2016-06-06 Thread Uwe Fechner
I am very happy about your work. I had the hope, that the built-in method sleep could be improved to reach this level of performance: https://github.com/JuliaLang/julia/issues/12770 But perhaps it is better to have this in a separate package. Uwe On Monday, June 6, 2016 at 10:07:22 AM UTC+2, I

[julia-users] Re: Julia Plugins

2016-06-06 Thread Uwe Fechner
Well, you can load modules on demand in the following way (in this way I load the module PyPlot on demand): eval(Expr(:using, :PyPlot)) To load a module from any path, push the directory, where you module lives into the load path: cd("/home/ufechner/00PythonSoftware/FastSim") push!(LOAD_PATH, p

Re: [julia-users] Re: Julia Plugins

2016-06-07 Thread Uwe Fechner
You wrote: > if I've understood your suggestions, I must create a directory structure > for each module ('src' dir under a dir with same name than module), but > I should load a single file without constraint on dirs > No, you do not need any directory structure. The only requirement is, that th

[julia-users] Re: ANN: Documenter.jl

2016-06-17 Thread Uwe Fechner
Hello, I installed Documenter and followed the tutorial. Now I would like to convert the documentation in html WITHOUT deploying it to github. How can I do this? Uwe On Friday, June 17, 2016 at 11:07:26 AM UTC+2, Michael Hatherly wrote: > > I’m please to announce the initial release of Document

[julia-users] Re: FFT speed much slower than Octave

2016-06-18 Thread Uwe Fechner
For a fair comparison, the Julia function rfft() should be compared with the Octave function fft2(). Both do a 2-D transform. I don't see any significant differences between Julia (with 2 threads) and Octave. Perhaps the discussion can be continued on github: https://github.com/JuliaLang/julia/

[julia-users] ERROR: LoadError: __precompile__(true) but require failed to create a precompiled cache file

2016-06-27 Thread Uwe Fechner
julia> Any idea, how to fix this? Uwe Fechner

[julia-users] Re: ERROR: LoadError: __precompile__(true) but require failed to create a precompiled cache file

2016-06-28 Thread Uwe Fechner
Ok, I restarted Julia, tried to include my program again. It failed again. Did another Pkg.update() and tried to include my program again. It failed again, but now with a different error: julia> include("Plotting.jl") ERROR: LoadError: LoadError: LoadError: LoadError: MethodError: `*` has no met

[julia-users] Re: ERROR: LoadError: __precompile__(true) but require failed to create a precompiled cache file

2016-06-28 Thread Uwe Fechner
Julia and try again? Uwe On Tuesday, June 28, 2016 at 9:51:33 PM UTC+2, Uwe Fechner wrote: > > Ok, I restarted Julia, tried to include my program again. It failed again. > Did another Pkg.update() and tried to include my program again. > It failed again, but now with a different erro

[julia-users] Re: How to install 0.4.5 on Ubuntu?

2016-07-15 Thread Uwe Fechner
Did you try: sudo add-apt-repository ppa:staticfloat/juliareleases sudo add-apt-repository ppa:staticfloat/julia-deps sudo apt-get update sudo apt-get install julia You need to have the correct ppa enabled! Uwe On Friday, July 15, 2016 at 3:49:04 PM UTC+2, Ahmed Mazari wrote: > > How to i

Re: [julia-users] Re: How to install 0.4.5 on Ubuntu?

2016-07-15 Thread Uwe Fechner
it installs the version 0.5 > > On Fri, Jul 15, 2016 at 4:39 PM, Uwe Fechner > mailto:uwe.fechner@gmail.com>> wrote: > > Did you try: > > sudo add-apt-repository ppa:staticfloat/juliareleases > > sudo add-apt-repository ppa:staticfloat/julia-deps >

Re: [julia-users] Re: How to install 0.4.5 on Ubuntu?

2016-07-15 Thread Uwe Fechner
Well, the ppa is up-to-date and works well. On Ubuntu a ppa is (nearly) always better than generic binaries, because the package manager can be used to keep Julia up-to-date. Only if a ppa is not maintained generic binaries are an alternative. Uwe Am 15.07.2016 um 19:37 schrieb Tony Kelman: > T

Re: [julia-users] Re: How to install 0.4.5 on Ubuntu?

2016-07-15 Thread Uwe Fechner
Well, you can always pin a version. See: https://help.ubuntu.com/community/PinningHowto For me, using Ubuntu packages is the easiest way to go, in particular if I have to explain students how to install Julia. Uwe On Friday, July 15, 2016 at 10:16:59 PM UTC+2, Tony Kelman wrote: > > The ppa i

[julia-users] What is a gc frame?

2016-07-24 Thread Uwe Fechner
Hello, in the issues on github I see a lot that refer to gc frames. What is a gc frame? I know how garbage collection works in general, but I don't understand the meaning of gc frames in the context of Julia. Could someone explain: - What they are used for? - When they need to be created? - If th

Re: [julia-users] What is a gc frame?

2016-07-24 Thread Uwe Fechner
is around something. Is this the case? On Sunday, July 24, 2016 at 1:56:05 PM UTC+2, Yichao Yu wrote: > > On Sun, Jul 24, 2016 at 6:03 AM, Uwe Fechner > wrote: > > Hello, > > in the issues on github I see a lot that refer to gc frames. > > > > What is a gc fr

[julia-users] How to install julia-0.5.0-rc0 on Ubuntu Linux

2016-07-28 Thread Uwe Fechner
Hello, I am trying to install julia-0.5.0-rc0 . I downloaded it from Github, unpacked it and executed make -j4 The building failed after 10 minutes with the following message: cblas_zhpr2 PASSED THE COMPUTATIONAL TESTS ( 577 CALLS) cblas_zhpr2 PASSED THE COMPUTATIONAL TESTS ( 577 CALLS

Re: [julia-users] How to install julia-0.5.0-rc0 on Ubuntu Linux

2016-07-28 Thread Uwe Fechner
-Valat wrote: > > Le jeudi 28 juillet 2016 à 01:58 -0700, Uwe Fechner a écrit : > > Hello, > > > > I am trying to install julia-0.5.0-rc0 . > > > > I downloaded it from Github, unpacked it and executed > > make -j4 > > > > The building failed

Re: [julia-users] How to install julia-0.5.0-rc0 on Ubuntu Linux

2016-07-28 Thread Uwe Fechner
The following command fixed the problem: sudo apt-get install libssl-dev Perhaps this command could be mentioned in the section "Ubuntu" of Readme.md ? On Thursday, July 28, 2016 at 3:37:28 PM UTC+2, Andreas Lobinger wrote: > > As the error message relates to a missing OpenSSL -> > try to find s

Re: [julia-users] How to install julia-0.5.0-rc0 on Ubuntu Linux

2016-07-29 Thread Uwe Fechner
Thanks. On Thursday, July 28, 2016 at 5:37:38 PM UTC+2, Andreas Lobinger wrote: > > > > On Thursday, July 28, 2016 at 4:37:24 PM UTC+2, Uwe Fechner wrote: >> >> The following command fixed the problem: >> sudo apt-get install libssl-dev >> >> Perhaps this

[julia-users] Re: Announcing 0.5.0-rc0 and binaries available

2016-08-04 Thread Uwe Fechner
Which bug (issue) was it? On Thursday, August 4, 2016 at 3:53:29 PM UTC+2, Tony Kelman wrote: > > 0.5.0-rc1 has been tagged and binaries are now available. > > > https://s3.amazonaws.com/julialang/bin/linux/arm/0.5/julia-0.5.0-rc1-linux-arm.tar.gz > > https://s3.amazonaws.com/julialang/bin/linux/x

[julia-users] Re: new installation of julia

2016-08-07 Thread Uwe Fechner
Is there a reason, why you want to compile Julia yourself? It might be easier to use a precompiled version, that you can download from http://julialang.org/downloads/ . ln -s creates a symbolic link to the executable, such that is in the search path. This is the way to go on Linux, but I don't

[julia-users] Re: Apparently I need to rebuild Julia?

2016-08-07 Thread Uwe Fechner
Could you give some more information: - which Ubuntu version - which version of Julia - how did you install Julia? Regards, Uwe On Sunday, August 7, 2016 at 12:43:39 PM UTC+2, Daniel Carrera wrote: > > Hello, > > I just upgraded my Ubuntu install and now I get this message: > > % julia > WARNING:

[julia-users] Re: new installation of julia

2016-08-07 Thread Uwe Fechner
The informations, that you give are not precise enough. Which Windows version do you have? How do you launch julia? Are you sure, that you do not have to versions of julia on your computer? On Linux, for me the following was sufficient to upgrade julia 0.4 to 0.4.7-pre+3: git pull git checkout

[julia-users] Re: ANN: JuMP 0.14 released

2016-08-08 Thread Uwe Fechner
Hello, I updated, and now I get the following error: julia> include("Plotting.jl") INFO: Recompiling stale cache file /home/ufechner/.julia/lib/v0.4/JuMP.ji for module JuMP. INFO: Recompiling stale cache file /home/ufechner/.julia/lib/v0.4/ReverseDiffSparse.ji for module ReverseDiffSparse. INFO:

  1   2   >