Helios De Rosario

Results 16 issues of Helios De Rosario

https://github.com/jheinen/GR.jl/commit/9b1dd41252bdf188539bebc5262765b024d73bd4 https://github.com/jheinen/GR.jl/commit/39d9cea254d4747ae7db55fdcbca38bc5a92bc17

Parity with https://github.com/jheinen/GR.jl/commit/944d4caaa2

enhancement

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...

discussion

Take this code: ```julia angles = LinRange(0, 30, 100) radii = LinRange(-2, 4, 100) polar(angles, radii) ``` This is the output of GR: ![gr_polarplot](https://user-images.githubusercontent.com/10651028/73872671-6a866e80-4850-11ea-82ce-63e85337fa45.png) But GRUtils makes this: ![grutils_polarplot_1](https://user-images.githubusercontent.com/10651028/73872702-7eca6b80-4850-11ea-8156-927528e7c7b6.png) There...

discussion

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...

help wanted
performance