Answers for "php exponential equation"

PHP
1

php exponential operator

$z = pow(2, 8); 	// int(256)
$z = $x ** $y;		// raises $x to the $y'th power  PHP >= 5.6
Posted by: Guest on April-22-2021
0

php exponential equation

$e=exp(1);
$yIntercept=.050;
$pow=-4.23E-10;
$m= $pow*$x;
$prediction=$yIntercept*pow($e,$m);
Posted by: Guest on January-04-2022

Browse Popular Code Answers by Language