Skip to content
Snippets Groups Projects
Commit 665c2c90 authored by Cédric Moreau's avatar Cédric Moreau
Browse files

[fix] Protocol: the MEDIAN function should not round the result in cas of even value

parent 81434bcc
No related branches found
No related tags found
No related merge requests found
...@@ -1399,7 +1399,7 @@ Function references: ...@@ -1399,7 +1399,7 @@ Function references:
* *MEDIAN* computes the median value in a list of values * *MEDIAN* computes the median value in a list of values
* *MAX* computes the maximum value in a list of values * *MAX* computes the maximum value in a list of values
> If values count is even, the median is computed over the 2 centered values by an arithmetical median on them, ceil rounded. > If values count is even, the median is computed over the 2 centered values by an arithmetical median on them, *NOT* rounded.
* *UNIQ* returns a list of the unique values in a list of values * *UNIQ* returns a list of the unique values in a list of values
* *INTEGER_PART* return the integer part of a number * *INTEGER_PART* return the integer part of a number
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment