You are here

private static function PHPExcel_Calculation_MathTrig::_romanCut in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/MathTrig.php \PHPExcel_Calculation_MathTrig::_romanCut()
1 call to PHPExcel_Calculation_MathTrig::_romanCut()
PHPExcel_Calculation_MathTrig::ROMAN in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/MathTrig.php

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/MathTrig.php, line 73

Class

PHPExcel_Calculation_MathTrig
PHPExcel_Calculation_MathTrig

Code

private static function _romanCut($num, $n) {
  return ($num - $num % $n) / $n;
}