Searched refs:acos (Results 1 – 12 of 12) sorted by relevance
2 Test return type and value for expected input acos()17 echo "acos .5 = ";18 $acosv1 = 360.0 * acos(0.5) / (2.0 * M_PI );27 echo "acos 0.86602540378444 = ";38 echo "acos 1.0 = ";39 $acosv3 = 360.0 * acos(1.0) / (2.0 * M_PI);49 echo "acos 0.0 = ";61 acos .5 = float(%f)63 acos 0.86602540378444 = float(%f)65 acos 1.0 = float(%f)[all …]
2 Test variations in usage of acos()12 //Test acos with a different input values28 $res = acos($values[$i]);
6 if ($OS == 'SUNOS' || $OS == 'SOLARIS') die("SKIP Solaris acos() returns wrong value");11 var_dump(acos(1.01));
2 Test acos function : 64bit long tests24 var_dump(acos($longVal));
17 acos(1.01));
7 $nan = acos(1.01);
51 #define acosd(x) (RADEG*acos(x))
361 PHP_FUNCTION(acos) in PHP_FUNCTION() argument368 RETURN_DOUBLE(acos(num)); in PHP_FUNCTION()
1395 function acos(float $num): float {} function
2668 ZEND_FUNCTION(acos);3311 ZEND_FE(acos, arginfo_acos)
Completed in 30 milliseconds