Hi, sorry, I missed the traffic on this ticket a few days ago. Can you verify that the patch fixes the problem which you encountered? If so, I will close this ticket. I looked at the patch and I don't see how it resolves the GCC problem which you encountered. I'm a little puzzled about that.
histogram_description clobbers xrange
histogram incorrectly normalized when frequency = density
Fixed by commit [ 328c0e8 ].
histogram incorrectly normalized when frequency = density
This is a packaging bug in the Debian package for Maxima; the package should declare its dependency on GCC, given that Maxima is compiled with GCL, and GCL appears to require GCC. I will try to remember to open a ticket on the bug tracker for the Debian package, although if you wish to do so, that would be terrific.
draw() does not work on new debian 13 installation
A slightly simpler way to write the original example. (%i10) simp: false; (%o10) false (%i11) 1 + 1 - 1*h; (%o11) 1 + 1 + (- 1) h It's interesting to me that was parsed essentially as 1 plus 1 plus ((minus 1) times h): (%i12) :lisp $_ ((MPLUS) 1 1 ((MTIMES) ((MMINUS) 1) $H)) I wonder why it wasn't parsed as 1 plus 1 plus (minus (1 times h)). I suppose the two forms are equivalent, but a different input does produce what I expected: (%i13) 1 - 1*h; (%o13) 1 - 1 h (%i14) :lisp $_ ((MPLUS) 1 ((MMINUS)...