PHP code example of customergauge / remainder
1. Go to this page and download the library: Download customergauge/remainder library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
customergauge / remainder example snippets
use CustomerGauge\Math\Remainder\Remainder;
$remainder = new Remainder([1, 1, 1]);
$remainder->round(2); // [0.34, 0.33, 0.33]
use CustomerGauge\Math\Remainder\Remainder;
$remainder = new Remainder([92, 93, 70]);
$remainder->round(2); // [0.36, 0.37, 0.27]