Define Variables

Variables can be defined using the equal sign. For example
>> h = 1.25
creates a variable with name "h" and assign value 1.25 to it. If there is already a variable named "h", its old value will be updated to 1.25.

A variable name can be a string of letters and digits, and underscore _, but cannot begin with a digit.



oz 2009-12-22