[julia-users] Re: Realtime Audio Processing with PortAudio.jl

2016-03-14 Thread Daniel Casimiro
I use callback functions with CoreAudio to play WAV files on Mac OS X. My implementation in WAV.jl is not sophisticated, but it works reasonably well.

[julia-users] WAV.jl changes in upcoming 0.5.0 release

2015-04-27 Thread Daniel Casimiro
Hi, I would like everyone to know that there will be a couple of minor changes in the upcoming release. First, float arrays will no longer be clamped by default. This was a bad default. See Issue #23 (https://github.com/dancasimiro/WAV.jl/issues/23) for details. Second, wavread will now retu

[julia-users] Re: Problem removing a package

2015-03-27 Thread Daniel Casimiro
FWIW, I don't think that this is specific to WAV.jl. It only contains julia source files. Additionally, it only depends on a single package: Compat.jl.

Re: [julia-users] The "sub" function behaves differently in v0.3 and master

2015-02-07 Thread Daniel Casimiro
A subtle difference for Julia v0.3: const nchans = size(userData.samples, 2) const samples = sub(userData.samples, tuple(rng, ntuple(nchans - 1, _ ->:)...)...) because (I think) of https://github.com/JuliaLang/julia/issues/4869 On Saturday, February 7, 2015 at 1:44:28 PM UTC-5, Daniel Casim

Re: [julia-users] The "sub" function behaves differently in v0.3 and master

2015-02-07 Thread Daniel Casimiro
; > julia> b[2] = -1 > -1 > > julia> A > 3x5 Array{Int64,2}: > 1 4 -1 10 13 > 2 5 8 11 14 > 3 6 9 12 15 > > If anything, the divergence between the two will grow further once > https://github.com/JuliaLang/julia/issues/9874 is addressed. &g

[julia-users] The "sub" function behaves differently in v0.3 and master

2015-02-01 Thread Daniel Casimiro
Hi, I noticed that the "sub" function behaves differently in master and version 0.3.5, when handling data of type Array{Float64, 1}. I am not sure if the change is intentional. The following works as expected on Julia master: *julia>* *sub([1.0; 2; 3; 4], 1:3, :)* but, fails in version 0.3.5