>> h = 1.25creates 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.