3v4l.org

run code in 300+ PHP versions simultaneously
<?php error_reporting(); // ridefinisce la costante dell'errore utente - solo PHP 4 define (FATAL,E_USER_ERROR); define (ERROR,E_USER_WARNING); define (WARNING,E_USER_NOTICE); // configura il livello di restituzione errore per questo script error_reporting (FATAL | ERROR | WARNING); // funzione di gestione dell'errore function myErrorHandler ($errno, $errstr, $errfile, $errline) { switch ($errno) { case FATAL: echo "<b>FATAL</b> [$errno] $errstr<br>\n"; echo " Fatal error in line ".$errline." of file ".$errfile; echo ", PHP ".PHP_VERSION." (".PHP_OS.")<br>\n"; echo "Aborting...<br>\n"; break; case ERROR: echo "<b>ERROR</b> [$errno] $errstr<br>\n"; break; case WARNING: echo "<b>WARNING</b> [$errno] $errstr<br>\n"; break; default: echo "Unkown error type: [$errno] $errstr<br>\n"; break; } } // funzione di prova del gestore di errore function scale_by_log ($vect, $scale) { if ( !is_numeric($scale) || $scale <= 0 ) trigger_error("log(x) for x <= 0 is undefined, you used: scale = $scale", FATAL); if (!is_array($vect)) { trigger_error("Incorrect input vector, array of values expected", ERROR); return null; } for ($i=0; $i<count($vect); $i++) { if (!is_numeric($vect[$i])) trigger_error("Value at position $i is not a number, using 0 (zero)", WARNING); $temp[$i] = log($scale) * $vect[$i]; } return $temp; } // configura il gestore dell'errore definito dall'utente $old_error_handler = set_error_handler("myErrorHandler"); // attiva alcuni errori, definendo prima un array misto con elementi non numerici echo "vector a\n"; $a = array(2,3,"foo",5.5,43.3,21.11); print_r($a); // genera il secondo array, generando un avviso echo "----\nvector b - a warning (b = log(PI) * a)\n"; $b = scale_by_log($a, M_PI); print_r($b); // questo è il problema, passiamo una stringa al posto di un array echo "----\nvector c - an error\n"; $c = scale_by_log("not array",2.3); var_dump($c); // errore critico, il log di zero o di un numero negativo non è definito echo "----\nvector d - fatal error\n"; $d = scale_by_log($a, -2.5); ?>
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.27, 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
Fatal error: Uncaught Error: Undefined constant "FATAL" in /in/lAqTE:4 Stack trace: #0 {main} thrown in /in/lAqTE on line 4
Process exited with code 255.
Output for 7.4.33
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.4.33 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.4.32
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.4.32 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.4.30
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.4.30 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.4.29
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.4.29 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.4.28
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.4.28 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.4.27
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.4.27 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.4.26
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.4.26 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.4.25
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.4.25 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.4.24
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.4.24 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.4.23
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.4.23 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.4.22
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.4.22 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.4.21
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.4.21 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.4.20
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.4.20 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.4.19
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.4.19 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.4.16
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.4.16 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.4.15
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.4.15 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.4.14
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.4.14 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.4.13
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.4.13 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.4.12
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.4.12 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.4.11
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.4.11 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.4.10
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.4.10 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.4.9
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.4.9 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.4.8
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.4.8 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.4.7
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.4.7 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.4.6
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.4.6 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.4.5
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.4.5 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.4.4
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.4.4 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.4.3
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.4.3 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.4.0
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.4.0 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.33
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.33 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.32
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.32 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.31
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.31 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.30
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.30 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.29
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.29 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.28
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.28 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.27
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.27 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.26
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.26 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.25
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.25 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.24
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.24 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.23
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.23 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.21
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.21 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.20
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.20 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.19
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.19 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.18
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.18 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.17
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.17 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.16
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.16 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.12
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.12 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.11
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.11 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.10
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.10 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.9
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.9 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.8
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.8 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.7
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.7 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.6
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.6 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.5
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.5 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.4
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.4 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.3
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.3 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.2
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.2 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.1
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.1 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.3.0
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.3.0 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.33
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.33 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.32
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.32 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.31
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.31 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.30
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.30 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.29
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.29 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.25
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.25 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.24
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.24 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.23
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.23 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.22
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.22 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.21
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.21 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.20
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.20 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.19
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.19 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.18
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.18 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.17
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.17 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.16
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.16 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.15
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.15 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.14
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.14 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.13
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.13 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.12
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.12 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.11
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.11 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.10
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.10 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.9
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.9 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.8
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.8 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.7
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.7 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.6
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.6 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.5
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.5 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.4
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.4 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.3
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.3 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.2
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.2 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.1
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.1 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.2.0
Warning: Use of undefined constant FATAL - assumed 'FATAL' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 4 Warning: Use of undefined constant ERROR - assumed 'ERROR' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 5 Warning: Use of undefined constant WARNING - assumed 'WARNING' (this will throw an Error in a future version of PHP) in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.2.0 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.33
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.33 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.32
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.32 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.31
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.31 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.30
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.30 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.29
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.29 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.28
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.28 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.27
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.27 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.26
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.26 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.25
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.25 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.24
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.24 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.23
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.23 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.22
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.22 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.21
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.21 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.20
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.20 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.19
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.19 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.18
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.18 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.17
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.17 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.16
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.16 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.15
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.15 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.14
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.14 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.13
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.13 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.12
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.12 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.11
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.11 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.10
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.10 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.9
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.9 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.8
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.8 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.7
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.7 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.6
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.6 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.5
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.5 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.4
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.4 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.3
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.3 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.2
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.2 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.1
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.1 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.1.0
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.1.0 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Unkown error type: [2] A non-numeric value encountered<br>
Output for 7.0.33
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.33 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.32
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.32 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.31
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.31 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.30
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.30 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.29
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.29 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.28
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.28 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.27
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.27 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.26
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.26 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.25
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.25 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.24
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.24 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.23
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.23 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.22
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.22 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.21
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.21 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.20
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.20 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.19
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.19 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.18
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.18 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.17
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.17 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.16
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.16 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.15
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.15 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.14
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.14 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.13
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.13 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.12
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.12 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.11
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.11 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.10
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.10 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.9
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.9 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.8
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.8 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.7
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.7 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.6
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.6 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.5
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.5 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.4
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.4 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.3
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.3 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.2
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.2 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.1
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.1 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 7.0.0
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 7.0.0 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.40
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.40 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.39
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.39 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.38
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.38 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.37
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.37 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.36
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.36 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.35
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.35 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.34
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.34 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.33
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.33 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.32
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.32 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.31
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.31 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.30
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.30 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.29
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.29 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.28
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.28 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.27
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.27 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.26
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.26 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.25
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.25 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.24
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.24 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.23
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.23 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.22
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.22 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.21
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.21 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.20
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.20 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.19
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.19 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.18
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.18 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.17
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.17 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.16
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.16 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.15
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.15 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.14
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.14 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.13
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.13 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.12
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.12 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.11
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.11 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.10
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.10 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.9
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.9 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.8
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.8 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.7
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.7 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.6
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.6 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.5
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.5 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.4
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.4 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.3
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.3 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.2
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.2 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.1
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.1 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.6.0
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.6.0 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.38
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.38 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.37
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.37 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.36
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.36 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.35
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.35 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.34
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.34 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.33
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.33 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.32
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.32 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.31
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.31 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.30
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.30 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.29
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.29 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.28
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.28 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.27
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.27 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.26
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.26 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.25
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.25 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.24
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.24 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.23
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.23 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.22
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.22 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.21
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.21 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.20
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.20 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.19
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.19 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.18
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.18 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.17
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.17 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.16
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.16 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.15
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.15 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.14
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.14 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.13
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.13 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.12
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.12 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.11
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.11 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.10
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.10 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.9
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.9 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.8
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.8 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.7
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.7 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.6
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.6 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.5
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.5 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.4
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.4 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.3
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.3 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.2
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.2 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.1
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.1 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.5.0
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.5.0 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.45
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.45 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.44
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.44 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.43
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.43 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.42
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.42 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.41
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.41 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.40
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.40 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.39
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.39 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.38
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.38 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.37
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.37 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.36
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.36 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.35
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.35 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.34
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.34 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.33
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.33 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.32
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.32 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.31
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.31 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.30
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.30 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.29
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.29 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.28
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.28 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.27
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.27 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.26
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.26 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.25
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.25 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.24
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.24 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.23
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.23 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.22
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.22 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.21
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.21 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.20
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.20 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.19
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.19 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.18
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.18 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.17
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.17 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.16
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.16 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.15
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.15 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.14
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.14 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.13
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.13 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.12
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.12 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.11
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.11 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.10
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.10 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.9
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.9 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.8
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.8 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.7
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.7 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.6
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.6 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.5
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.5 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.4
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.4 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.3
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.3 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.2
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.2 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.1
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.1 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.4.0
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.4.0 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.29
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.29 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.28
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.28 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.27
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.27 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.26
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.26 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.25
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.25 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.24
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.24 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.23
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.23 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.22
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.22 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.21
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.21 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.20
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.20 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.19
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.19 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.18
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.18 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.17
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.17 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.16
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.16 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.15
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.15 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.14
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.14 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.13
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.13 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.12
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.12 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.11
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.11 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.10
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.10 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.9
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.9 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.8
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.8 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.7
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.7 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.6
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.6 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.5
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.5 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.4
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.4 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.3
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.3 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.2
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.2 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.1
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.1 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.3.0
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.3.0 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.2.17
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.2.17 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.2.16
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.2.16 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.2.15
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.2.15 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.2.14
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.2.14 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.2.13
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.2.13 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.2.12
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.2.12 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.2.11
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.2.11 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.2.10
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.2.10 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.2.9
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.2.9 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.2.8
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.2.8 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.2.7
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.2.7 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.2.6
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.2.6 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.2.5
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.2.5 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.2.4
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.2.4 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.2.3
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.2.3 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.2.2
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.2.2 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.2.1
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.2.1 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.2.0
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.2.0 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.1.6
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.1.6 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.1.5
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.1.5 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.1.4
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.1.4 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.1.3
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.1.3 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.1.2
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.1.2 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.1.1
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.1.1 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.1.0
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.1.0 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.0.5
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.0.5 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.0.4
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.0.4 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.0.3
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.0.3 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.0.2
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.0.2 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.0.1
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.0.1 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 5.0.0
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 5.0.0 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 4.4.9
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 4.4.9 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 4.4.8
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 4.4.8 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 4.4.7
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 4.4.7 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 4.4.6
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 4.4.6 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 4.4.5
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 4.4.5 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 4.4.4
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 4.4.4 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 4.4.3
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 4.4.3 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 4.4.2
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 4.4.2 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 4.4.1
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 4.4.1 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 4.4.0
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 4.4.0 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 4.3.11
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 4.3.11 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 4.3.10
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 4.3.10 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 4.3.9
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 4.3.9 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 4.3.8
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 4.3.8 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 4.3.7
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 4.3.7 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 4.3.6
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 4.3.6 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 4.3.5
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 4.3.5 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 4.3.4
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 4.3.4 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 4.3.3
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 4.3.3 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 4.3.2
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 4.3.2 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 4.3.1
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 4.3.1 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>
Output for 4.3.0
Notice: Use of undefined constant FATAL - assumed 'FATAL' in /in/lAqTE on line 4 Notice: Use of undefined constant ERROR - assumed 'ERROR' in /in/lAqTE on line 5 Notice: Use of undefined constant WARNING - assumed 'WARNING' in /in/lAqTE on line 6 vector a Array ( [0] => 2 [1] => 3 [2] => foo [3] => 5.5 [4] => 43.3 [5] => 21.11 ) ---- vector b - a warning (b = log(PI) * a) <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br> Array ( [0] => 2.2894597716988 [1] => 3.4341896575482 [2] => 0 [3] => 6.2960143721717 [4] => 49.566804057279 [5] => 24.165247890281 ) ---- vector c - an error <b>ERROR</b> [512] Incorrect input vector, array of values expected<br> NULL ---- vector d - fatal error <b>FATAL</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br> Fatal error in line 38 of file /in/lAqTE, PHP 4.3.0 (Linux)<br> Aborting...<br> <b>WARNING</b> [1024] Value at position 2 is not a number, using 0 (zero)<br>

preferences:
307.65 ms | 403 KiB | 453 Q