Can anyone confirm to me what this function calculates?
Function m(t); p=9t; q=p+32; r = q/5; Return r; End function
Ok so inputting numbers from $0-9$ (in numerical order) the output is as follows: $6.4, 8.2, 10, 11.8, 13.6, 15.4, 17.2, 19, 20.8, 22.6 $ Ok so clearly each value is being incremented by $1.8$. But would it be correct to say that the function adds increments by $1.8$?