The R Project SVN R

Rev

Rev 59039 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 59039 Rev 61129
Line 1... Line 1...
1
% File src/library/base/man/Math.Rd
1
% File src/library/base/man/Math.Rd
2
% Part of the R package, http://www.R-project.org
2
% Part of the R package, http://www.R-project.org
3
% Copyright 1995-2010 R Core Team
3
% Copyright 1995-2012 R Core Team
-
 
4
% Copyright 2002-2012 The R Foundation
4
% Distributed under GPL 2 or later
5
% Distributed under GPL 2 or later
5
 
6
 
6
\name{MathFun}
7
\name{MathFun}
7
\title{Miscellaneous Mathematical Functions}
8
\title{Miscellaneous Mathematical Functions}
8
\usage{
9
\usage{
Line 10... Line 11...
10
sqrt(x)
11
sqrt(x)
11
}
12
}
12
\alias{abs}
13
\alias{abs}
13
\alias{sqrt}
14
\alias{sqrt}
14
\description{
15
\description{
15
  These functions compute miscellaneous mathematical functions.
16
  \code{abs(x)} computes the absolute value of x, \code{sqrt(x)} computes the
16
  The naming follows the standard for computer languages
17
  (principal) square root of x, \eqn{\sqrt{x}}.% Details for complex x are below
-
 
18
 
17
  such as C or Fortran.
19
  The naming follows the standard for computer languages such as C or Fortran.
18
}
20
}
19
\arguments{
21
\arguments{
20
  \item{x}{a numeric or \code{\link{complex}} vector or array.}
22
  \item{x}{a numeric or \code{\link{complex}} vector or array.}
21
}
23
}
22
\details{
24
\details{