home *** CD-ROM | disk | FTP | other *** search
-
- _M_a_x_i_m_a _a_n_d _M_i_n_i_m_a
-
- max(..., na.rm=TRUE)
- min(..., na.rm=TRUE)
-
- pmax(..., na.rm=FALSE)
- pmin(..., na.rm=FALSE)
-
- _V_a_l_u_e:
-
- max and min return the maximum or minimum of all the
- values present in their arguments. If na.rm is FALSE
- an NA value in any of the arguments will cause a value
- of NA to be returned, otherwise NA values are ignored.
-
- pmax and pmin take several vectors as arguments and
- return a single vector giving the parallel maxima (or
- minima) of the vectors. The first element of the
- result is the maximum (minimum) of the first elements
- of all the arguments, the second element of the result
- is the maximum (minimum) of the second elements of all
- the arguments and so on. Shorter vectors are recycled
- if necessary. If na.rm is FALSE, NA values in the
- input vectors will produce NA values in the output. If
- na.rm is TRUE, NA values are ignored.
-
- _S_e_e _A_l_s_o:
-
- range.
-
- _E_x_a_m_p_l_e_s:
-
- min(5:1,pi)
- pmin(5:1, pi)
- x <- sort(rnorm(100)); cH <- 1.35
- plot(x, pmin(cH, pmax(-cH, x)), type='b', main= "Huber's function")
-
-