Mason Protter

Results 136 issues of Mason Protter

I tried adapting Nonlinear Boundary Value problems example from the README to a BVP I was interested in and his this error: ```julia using ApproxFun, Plots @time let rmin =...

I think that given that we don't have a way to hook into custom repl modes other than the ones hard coded into IJulia, it could be really nice to...

We currently don't have a way to take determinants of matrices on the GPU as far as I know. It'd be really nice if we could do that.

enhancement
cuda array

There appears to be a problem with `jvp` when the `v` supplied is real and the primal is complex: ```julia using FiniteDifferences jvp(central_fdm(5,1), abs2, (3.0 + im, 0.25)) #+RESULTS: :...

bug

It was mentioned on Slack that the docs could really use some explicit examples on how to derive a pushforward or pullback, so here is an example I cooked up...

If one defines a method, uses `@trace` on that method and then redefines the method and runs `@trace` on it again, it will give the output from the *old* method...

bug

As discussed on [zulip](https://julialang.zulipchat.com/#narrow/stream/137791-general/topic/.60Javis.2Ejl.60.20Image.20Quality), the current animations being shown seem to be fairly low res. It'd be good to eventually produce higher res gifs or videos.

enhancement
hacktoberfest

We'll need a type declaration syntax at least for method definitions. I was thinking something like this ```julia f(x::Number, y::String) = (x, y) ``` translating to ```julia (defn f [(x...

To make this nicer for people to use, I think it'd be cool to make a special jupyter kernel that just parses a code block with the lisp parser before...