Jeff Fessler

Results 61 issues of Jeff Fessler

This PR adds support for the angle between two `AbstractArrays` (of compatible dimensions) even if they have different element types and even if the elements are non-float reals (i.e., integers)...

Currently `fft` fails for Unitful data. It is pretty easy to write a work-around that does not even add any dependency on the Unitful package, by using `oneunit` in Base:...

GitHub disables actions after 60 days of inactivity and there is discourse about how to address it but I cannot quite tell what it the appropriate solution: https://discourse.julialang.org/t/compathelper-workflows-disabled-after-60-days-of-inactivity/48870 It would...

Would it be possible to make `Param(x)` have a subtype of `AbstractArray` (when `x` is)? ```julia julia> x = [1, 2] 2-element Vector{Int64}: 1 2 julia> xp = Param(x) 2-element...

The type of `AbstractWeights` is restricted to `Real` which precludes complex numbers, numbers with units from Unitful, etc. Using `Number` for the most general type would be more inclusive. https://github.com/JuliaStats/StatsBase.jl/blob/b0ca0b06cdc78f68d1fa2af5de4524b79494ff9e/src/weights.jl#L2...

Fixes #745 but breaks the positional argument `edges`. So this is a WIP - I don't expect it to be merged in its current form.

Something about `isapprox` does not work for Vectors of Unitful Arrays: ```julia using Unitful: mm ones(2)*mm ≈ ones(2)*mm # works fine [ones(2)] ≈ [ones(2)] # works fine [ones(2)*mm] ≈ [ones(2)*mm]...

MWE: ```julia using Unitful: mm, ° x = 3.001mm floor(typeof(x), x, digits=2) # works a = 3.001° floor(typeof(a), a, digits=2) # fails due to method ambiguity ``` Presumably because degrees...

I noticed that #597 was doing a full CI run even though it is just a change to a `.md` file. This (untested) PR hopefully should reduce the carbon footprint...

If I use the latex package `import` and its command `\subimport` to import a .tex file from another directory that in turn uses `\inputminted` to try to show some code...

enhancement
package clash
docs