Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 4.0.x will end 8 May 2023 (12 months).
  • Bug fixes for security issues in 4.0.x will end 13 November 2023 (18 months).
  • PHP version: minimum PHP 7.3.0 Note: the minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is also supported.

Differences Between: [Versions 400 and 401] [Versions 400 and 402] [Versions 400 and 403]

(no description)

File Size: 142 lines (4 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

SumSquares:: (6 methods):
  sumSquare()
  getCount()
  numericNotString()
  sumXSquaredMinusYSquared()
  sumXSquaredPlusYSquared()
  sumXMinusYSquared()


Class: SumSquares  - X-Ref

sumSquare(...$args)   X-Ref
SUMSQ.

SUMSQ returns the sum of the squares of the arguments

Excel Function:
SUMSQ(value1[,value2[, ...]])

return: float|string
param: mixed ...$args Data values

getCount(array $array1, array $array2)   X-Ref
No description

numericNotString($item)   X-Ref
These functions accept only numeric arguments, not even strings which are numeric.

param: mixed $item

sumXSquaredMinusYSquared($matrixData1, $matrixData2)   X-Ref
SUMX2MY2.

return: float|string
param: mixed[] $matrixData1 Matrix #1
param: mixed[] $matrixData2 Matrix #2

sumXSquaredPlusYSquared($matrixData1, $matrixData2)   X-Ref
SUMX2PY2.

return: float|string
param: mixed[] $matrixData1 Matrix #1
param: mixed[] $matrixData2 Matrix #2

sumXMinusYSquared($matrixData1, $matrixData2)   X-Ref
SUMXMY2.

return: float|string
param: mixed[] $matrixData1 Matrix #1
param: mixed[] $matrixData2 Matrix #2