You are here

public static function PHPExcel_Calculation_Functions::isMatrixValue in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Functions.php \PHPExcel_Calculation_Functions::isMatrixValue()
8 calls to PHPExcel_Calculation_Functions::isMatrixValue()
PHPExcel_Calculation_Functions::TYPE in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Functions.php
* TYPE * * Returns a number that identifies the type of a value * *
PHPExcel_Calculation_Statistical::AVERAGEA in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* AVERAGEA * * Returns the average of its arguments, including numbers, text, and logical values * * Excel Function: * AVERAGEA(value1[,value2[, ...]]) * * @access public * @category Statistical Functions *
PHPExcel_Calculation_Statistical::KURT in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* KURT * * Returns the kurtosis of a data set. Kurtosis characterizes the relative peakedness * or flatness of a distribution compared with the normal distribution. Positive * kurtosis indicates a relatively peaked distribution. Negative…
PHPExcel_Calculation_Statistical::SKEW in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* SKEW * * Returns the skewness of a distribution. Skewness characterizes the degree of asymmetry * of a distribution around its mean. Positive skewness indicates a distribution with an * asymmetric tail extending toward more positive values.…
PHPExcel_Calculation_Statistical::STDEVA in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* STDEVA * * Estimates standard deviation based on a sample, including numbers, text, and logical values * * Excel Function: * STDEVA(value1[,value2[, ...]]) * * @access public * @category Statistical Functions *

... See full list

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Functions.php, line 294

Class

PHPExcel_Calculation_Functions
PHPExcel_Calculation_Functions

Code

public static function isMatrixValue($idx) {
  return substr_count($idx, '.') <= 1 || preg_match('/\\.[A-Z]/', $idx) > 0;
}