Mason Protter
Mason Protter
Hello, thanks for taking an interest! Your first question would probably require a function like the `Expand` function in Mathematica which expands all products and positive integer exponents. We could...
Yes, this is a good suggestion. I have some ideas for a next gen interface as I rewrite Symbolics.jl from scratch, but those aren't really ready to make public.
Hmm. That’s a good point. One thing I was thinking is that if one wants rationals they can just use `//` but that is a bit uglier syntactically and I’d...
Hi Roger, sorry for the late reply. I could start the process of registering it, but first I’d want to get around to some upgrades I’ve been planning. This might...
Isn't that also the case with the examples in the README though? E.g. ```julia x=Fun(identity, 0..1) N = (u1,u2) -> [u1'(0) - 0.5*u1(0)*u2(0); u2'(0) + 1; u1(1) - 1; u2(1)...
Is there a timeline for this to merge?
I couldn't find an appropriate place in the code to comment on this so I'll do it here if thats okay. Currently the algorithm doesn't know to use the analytic...
Why not make `N` a type parameter and then just have a `Taylor{N, T}` type where `N` is the number of variables? This way you can specialize on `Taylor{1, T}`...
> The latter has the advantage that it won't be formatted as Julia code. It also has the disadvantage that it won't be formatted as Julia code. Maybe PyCall is...
I just ran into this myself and would also like `Base.active_repl` to exist. Have you given any more thought to this?