Colin B. Macdonald
Colin B. Macdonald
I should've said: with `browser.zoom.full` set to true, I *cannot* reproduce.
A few comments above mention PyQt5: this is now much better with https://github.com/flathub/com.riverbankcomputing.PyQt.BaseApp (at least it works well for me and maintainers where very responsive to a few issues that...
(+1 for difficulty in understanding `Routine`: I had a hard time with that when adding Octave support a year ago.) Ironically, it worse for `octave_code` where we actually could generate:...
The real trouble here is `-2 < x < 0`, which gives the same error on its own. I know Python allows these sorts of constructions. But does Octave? Ignoring...
references: https://github.com/sympy/sympy/issues/8541 https://docs.sympy.org/latest/modules/core.html#r137 (technically, it being impossible to support `-2 < x < 0` directly in SymPy does not preclude us from doing it) - - - - Workaround: ```...
That does seem poor... But you are ignoring this warning: ``` warning: passing floating-point values to sym is dangerous, see "help sym" ``` Compare the difference between these: ``` 1e-23*x...
I'm not sure if this can be improved but the root of this problem is the following. I've hidden most of the warnings, but I re-iterate that converting doubles to...
This 9223372036854775807 number is 2^63 - 1: presumably a `int64` is being created somewhere along the way... Python int's have no max but int64 or uint64 certainly do...
Using `ratflag` as `f` is working fine: ``` sym(1e-23, 'f') ans = (sym) 6805647338418769 ─────────────────────────────────────── 680564733841876926926749214863536422912 ``` So I tracked this to `@sym/private/double_to_sym_heuristic.m`: ``` [N1, D1] = rat (x); [N2,...
They need doubled in Octave 5.2.2 on Ubuntu 20.04, where ``` makeinfo --version texi2any (GNU texinfo) 6.7 ```