I have a problem. How can I convert this formula (t)^1.5
to php code.
Thank you.
PHP pow();
should be able to do it. Thus, it would turn out as pow($variable_representing_t, 1.5);
For more information, see here: http://php.net/manual/en/function.pow.php
Does the caret represent a power of? If so, then pow(t,1.5);