Bernd Riederer

Results 9 issues of Bernd Riederer

I ran into a small problem, that `curve_fit(model, xdata::AbstractArray, ydata::AbstractArray, wt::AbstractArray{T}, p0::AbstractArray; inplace = false, kwargs...) where T` tried to fit my function for a weight `1/0 = Inf`. So...

After prior discussion in #165 and #166 respectively I decided to put a little bit of effort into extending it to fix #9 finally. For that I simply enhanced the...

ROOT offers different ways to store arrays or even structs in `TBranches`. I added a small ROOT-File ([test_array.root.zip](https://github.com/tamasgal/UnROOT.jl/files/5108576/test_array.root.zip)) which contains a `TTree` called 'arrays' which contains a scalar, a 6d-vector...

enhancement

As a follow up to #4645 I am trying to implement the feature also for other backends. As asked in https://github.com/JuliaPlots/Plots.jl/pull/4645#issuecomment-1453323122 by @lmanzanillas I have started with the `PythonPlot` backend,...

For some reason after updating my environment (but not LocalCoverage.jl) `generate_coverage` does not work anymore on my Windows machine. I've tracked it down to the usage of `LocalCoverage.clean_folder()` within the...

Adds a safety measure to still process .cov files even when tests are failing. Closes #57

Currently if one test is failing the whole pipeline stops and no coverage reports can be created. In my opinion if a test is failing it should still be possible...

When using the `Revise` package in combination with the definition of an interface via `RequiredInterfaces.@required` changes in the source code immediately throws an error. As an example I used a...