Pctile1: Difference between revisions

From EVRI Test Wiki 02192024
Jump to navigation Jump to search
imported>Jeremy
(Importing text file)
(No difference)

Revision as of 08:21, 2 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)

See Also

pctile2