Maxima CAS in emacs : change line wrap settings or disabling line wrap in the output

StackOverflow https://stackoverflow.com/questions/23114682

  •  04-07-2023
  •  | 
  •  

Question

I'm using text mode maxima in emacs. Is there a way to change the character limit for line wrapping or disable line wrapping of equations entirely in the output?

Was it helpful?

Solution

You can set linel

(%i7) makelist(42, i, 30);
(%o7) [42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 
                                42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42]
(%i8) linel: 200;
(%o8)                                                                                             200
(%i9) makelist(42, i, 30);
(%o9)                                   [42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42]
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top