You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hmm, I guess maxima-jupyter is converting % to an ordinary, non-Taylor, form for display. I find a workaround is to assign the result to a named variable, e.g. foo: taylor(...) and then pade(foo, 1, 1).
Not sure what to do about the problem in general. Aside from Taylor, there are rational function representations which are displayed with /R/. I guess the problem is that there is a display form which is different, but at present there isn't a way to distinguish them.
In Maxima-Jupyter, the pade() does not work:
taylor (1 + x + x^2 + x^3, x, 0, 3);
pade (%, 1, 1);
pade: first argument must be a Taylor series; ...
This is because taylor() in Maxima-Jupyter does not return /T/ expression.
Any help?
Is there any tip to return /T/ expression?
The text was updated successfully, but these errors were encountered: