HyperMath

Using the Command Windows

Using the Command Windows

Previous topic Next topic No expanding text in this topic  

Using the Command Windows

Previous topic Next topic JavaScript is required for expanding text JavaScript is required for the print function  

HyperMath Command Window

The HyperMath Command Window allows you to execute HyperMath commands interactively.  To display the content of a variable, use the print() statement.

> A = [1,2,3];

> print(A)

[Matrix] 1 x 3

1    2   3

Previous commands can be recalled by using the up and down arrow keys.  They can also be dragged from the Command History Window into the Command Window and executed.  Alternatively, they can be executed directly from the Command History Window by double-clicking on the item.

Tcl Command Window

The Tcl Command Window is accessible from the View menu.  All variables defined in it are global by default and persist.

% set a 10

% puts $a

10

Previous commands can be recalled by using the up and down arrow keys.