Helios De Rosario
Helios De Rosario
https://github.com/jheinen/GR.jl/commit/9b1dd41252bdf188539bebc5262765b024d73bd4 https://github.com/jheinen/GR.jl/commit/39d9cea254d4747ae7db55fdcbca38bc5a92bc17
From #45: > I currently observe a slight performance loss of 30-40% when switching from GR to GRUtils. I would like to investigate this in more detail. I have made...
Take this code: ```julia angles = LinRange(0, 30, 100) radii = LinRange(-2, 4, 100) polar(angles, radii) ``` This is the output of GR:  But GRUtils makes this:  There...
Recurrence matrices are wrappers of `SparseMatrixCSC{Bool,Int}`, which are useful to make some operations. However it is inefficient to create them (cf. #76), and also take more memory than what is...
In the calculation of recurrence matrices with fixed recurrence rate there is the issue commented in #46 (indirectly calling `distancematrix`, which is expensive): https://github.com/JuliaDynamics/RecurrenceAnalysis.jl/blob/2961a32b29e41ea1e3dc3d63f67e29d74948e5ab/src/matrices.jl#L220-L222 A function that gives the same...