Matlab can be used as a calculator. For example, inputing ``3+3'' at the command prompt, Matlab will yield the following:
>> 3+3 ans = 6
Try using operators for multiplication (`` * ''), division (`` / '') and raising to an exponent (`` ^ ''). You can type ``help ops'' for a list of all the operators in Matlab. Make sure you are aware of operator precedence. The following will yield different answers:
>> 8 * 7 / 4 + 3 ans = 17 >> 8 * 7 /(4 + 3) ans = 8