That's _very, very_ cool!
Matrices that never used to fit on one screen now fit beautifully!
Thank you, thank you!
At 09:09 AM 6/27/2012, Robert Dodier wrote:
>Henry Baker <hbaker1 <at> pipeline.com> writes:
>
>> Due to the amount of space taken up by Maxima writing out
>> "conjugate(foo)" in full for every conjugated variable,
>> I'd love to shorten this to " foo' " (or equivalent).
>> I'm not so worried about _input_ of conjugate as _output_.
>
>Maybe this is enough:
>
>:lisp (setf (get '$conjugate 'dissym) '(#\'))
>:lisp (setf (get '$conjugate 'dimension) 'dimension-postfix)
>
>then
>
>declare (z, complex);
>conjugate (z);
> => z'
>
>Disclaimer: I didn't try other cases.
>
>HTH
>
>Robert Dodier