Pctile1: Difference between revisions
Jump to navigation
Jump to search
imported>Jeremy (Importing text file) |
imported>Jeremy (Importing text file) |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
===Purpose=== | ===Purpose=== | ||
Returns the Pth percentile of a data vector. | Returns the Pth percentile of a data vector. | ||
===Synopsis=== | ===Synopsis=== | ||
:pctile = pctile1(x,p) | :pctile = pctile1(x,p) | ||
===Description=== | ===Description=== | ||
The return value (pctile) is the specified percentile of the sample. This is the function used by the summary command. | The return value (pctile) is the specified percentile of the sample. This is the function used by the summary command. | ||
* x = matrix (column vector) in which the sample data is stored. | ====Inputs==== | ||
* p = integer (1,100), percentile to calculate. | |||
* '''x''' = matrix (column vector) in which the sample data is stored. | |||
* '''p''' = integer (1,100), percentile to calculate. | |||
===Examples=== | ===Examples=== | ||
pctl = pctile1(x,50) | pctl = pctile1(x,50) | ||
===See Also=== | ===See Also=== | ||
[[pctile2]] | [[pctile2]] |
Latest revision as of 16:34, 3 September 2008
Purpose
Returns the Pth percentile of a data vector.
Synopsis
- pctile = pctile1(x,p)
Description
The return value (pctile) is the specified percentile of the sample. This is the function used by the summary command.
Inputs
- x = matrix (column vector) in which the sample data is stored.
- p = integer (1,100), percentile to calculate.
Examples
pctl = pctile1(x,50)