David Weber

Results 27 comments of David Weber

Another issue-- both this and the matlab version assume that the signal is periodic (or at least continuous at the boundaries), leading to some pretty nasty gibbs phenomina (e.g. `plot([x...

> Do you know how its possible that you (at least not on first sight) do not need to solve a LP to calculate the distance? This is because the...

Before noticing this issue, I went ahead and adapted the Plots recipe used in [EvoTrees](https://github.com/Evovest/EvoTrees.jl/blob/main/src/plot.jl) for this package. It's rather hacky, because the node shapes don't play well with the...

I have not yet, other projects took precedence. I may reexamine the issue sometime this summer. -- cheers, David Weber -----Original Message----- Re: [simonster/Lasso.jl] Multinomial Logistic regression (#8) From: youngjaewoo...

ContinuousWavelets has been added to the registry and has all tests passed. If it moves from the [UCD4IS link](https://github.com/UCD4IDS/ContinuousWavelets.jl) I'll make sure to come back here and update the link.

I have done this via the run command directly via something like ``` root = Conda.ROOTENV pipPath = joinpath(root, "bin", "pip") run(`$(pipPath) install nameOfPackage`) ``` as far as I could...

update: having messed around with `MaxPool` from Flux for a bit, it appears that `res = maxpool(randn(25,2,1,3), (2,1), pad=(1,0,0,0), stride=1)` works even if `res = maxpool(randn(25,2,1,3), (2,1), pad=1, stride=1)` breaks.

good catch, looks like locate wasn't updating as fast as I thought it would (also, thanks for the fast turn around!). The minimal example does what it's supposed to. I'm...

Yep still getting errors on the real code. The Julia error is MATLAB.MEngineError "failed to get the variable ans from a MATLAB session". while the MATLAB error is {Error using...

the code above works fine- I have significantly messier code that is producing the above errors when called through Julia. The command is `mat"plotImportantScat($(β), $(Sname), $(CLASSNAMES), 'randoCal')"` where `plotImportantScat` is...