Re: [julia-users] Garbage collection outside the global scope

2015-08-07 Thread Andrew B. Martin
Thanks!

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

2015-08-07 Thread felipenoris
I would be glad to help with this process. > > Will you put a roadmap on what´s needed on https://github.com/JuliaLang/julia/issues/12489 ?

[julia-users] Re: Poor resolution of Julia PyPlot in Mac

2015-08-07 Thread Allard van Mossel
Hi Amuthan, This might be because PyPlot in Julia uses a different graphics backend than when you call Matplotlib directly in Python. Working from Python, the default option is osx' native Cocoa framework (which supports retina displays), while PyPlot in Julia uses QT or Gtk. As far as I know i

[julia-users] Re: julia 0.4 updated release date?

2015-08-07 Thread Sisyphuss
By the end of this month, I saw it somewhere. On Friday, August 7, 2015 at 10:58:23 AM UTC+2, ivo welch wrote: > > > not nagging, but curious---is there an expected arrival date (plus minus) > posted somewhere? > >

Re: [julia-users] Forgot the "atan2d" or "atand2" function?

2015-08-07 Thread Sisyphuss
It seems to be a silly question when I discovered the `rad2deg` function. On Friday, August 7, 2015 at 1:11:31 PM UTC+2, Sisyphuss wrote: > > no i mean `rad2deg(atan2())` > > > On Friday, August 7, 2015 at 6:40:28 AM UTC+2, Michele Zaffalon wrote: >> >> You mean atan2 >>

Re: [julia-users] Forgot the "atan2d" or "atand2" function?

2015-08-07 Thread Sisyphuss
no i mean `rad2deg(atan2())` On Friday, August 7, 2015 at 6:40:28 AM UTC+2, Michele Zaffalon wrote: > > You mean atan2 > > ? > > On Fri, Aug 7, 2015 at 2:07 AM, Sisyphuss > wrote: > >> I don't find this function i

[julia-users] Re: julia 0.4 updated release date?

2015-08-07 Thread Andreas Lobinger
https://github.com/JuliaLang/julia/milestones afaics the only blocking feature is documentation.

Re: [julia-users] save data as image without Images.jl

2015-08-07 Thread Yakir Gagnon
Sorry people, this is the right version: function imwrite{T <: FloatingPoint}(x::Array{T,2},fname) width, height = size(x) open(fname,"w") do stream write(stream, "P6\n$width $height\n255\n") for j in 1:height, i in 1:width, k = 1:3 write(stream,round(UInt8,255x

Re: [julia-users] save data as image without Images.jl

2015-08-07 Thread Yakir Gagnon
In case this helps anyone, here’s a functioning barebone version: function imwrite{T <: FloatingPoint}(x::Array{T,2},fname) height,width = size(x) open(fname,"w") do stream write(stream, "P6\n$width $height\n255\n") for j in 1:width, i in 1:height, k = 1:3 writ

[julia-users] julia 0.4 updated release date?

2015-08-07 Thread ivo welch
not nagging, but curious---is there an expected arrival date (plus minus) posted somewhere?

Re: [julia-users] Defining a function in different modules

2015-08-07 Thread Johan Sigfrids
I believe the reason fit! and similar names are defined in StatsBase is so that there would be one canonical version of the name the everyone can import and extend. On Friday, August 7, 2015 at 5:03:00 AM UTC+3, Madeleine Udell wrote: > > Thanks, David! Requiring StatsBase and importing StatsBas

Re: [julia-users] PSA: auto-precompile your modules

2015-08-07 Thread René Donner
Thanks a ton to everyone who made this happen! Absolutely fantastic stuff, especially that it made it into 0.4! Am 07.08.2015 um 06:39 schrieb Steven G. Johnson : > Many of you are aware that Julia 0.4 has some facilities for precompiling > modules, but in the last couple of days they have bec