wxMaxima

wxMaxima howto

This page gives some tips on how to efficiently use wxMaxima. It describes wxMaxima version 0.7.0 or greater.

How is the content of the output window organized?

The output is organized in groups containing a label, input and output. The label for command groups is %in for some number n and the label for text groups is /*

How can I use command line history?

How can I enter expressions on multiple lines?

Using a dialog:

Directly in the output window:

How can I add text comments?

How can I edit text comments/previous input?

How can I delete groups?

Can I edit text comments/previous input with only the keyboard?

Typical scenario: you entered expression %i1, %i2, %i3, %i4 and now you want to change expression %i2 and reevaluate %i3 with the new definition of %i2.

How can I display all digits of large numbers?

The default display algorithm does not display all digits of large numbers (big integers or bigfloat numbers). You can change to the ascii art display which displays all digits by entering

set_display(ascii);

To return to the default display algorithm enter

set_display(xml);

How can I make inline plots?

How can I change the size of inline plots?

The size of the inline pictures in controlled by the wxplot_size variable. It contains the size of pictures in pixels.

Example:

wxplot2d(sin(x), [x,-5,5]), wxplot_size=[500,500];


Inline plots do not work.

How can I make animations?

Functions for creating are described on separate page.

I have a *.wxm file. Can I use it in xmaxima?

Yes. You can load it using maxima batchload command.

Usefull keyboard shortcuts

Shortcut Command Note
F1 Open help browser
F2 Select last input
F3 Shift focus to output window
F4 Shift focus to input line
F5 Copy selection to input line When expression is selected in the output window
F6 Add new text group Select label of a group to prepend
F7 Add new command group Select label of a group to prepend
ENTER Edit text When editable text is selected in output window
CTRL-ENTER End editing When output window is in edit mode
CTRL-ENTER Re-evaluate expression When command is selected in output window
ESC End editing but don't send changes to maxima When output window is in edit mode
UP/DOWN-ARROW Move between editable text When editable text is selected in output window
MediaWiki Sourceforge.net Logo
© 2006-2007 Andrej Vodopivec