https://github.com/cran/spate
Raw File
Tip revision: 25fc52178e8ddc8cdabc31b98b09c62972ca564a authored by Fabio Sigrist on 09 May 2013, 00:00:00 UTC
version 1.2
Tip revision: 25fc521
vnorm.Rd
\name{vnorm}
\alias{vnorm}
%- Also NEED an '\alias' for EACH other topic documented here.
\title{
Eucledian norm of a vector
}
\description{
Calculates the Eucledian norm of a vector
}
\usage{
vnorm(v)
}
%- maybe also 'usage' for other objects documented here.
\arguments{
  \item{v}{
Vector.
}
}

\value{
The Eucledian norm of the vector 'v'.
}
\author{
Fabio Sigrist
}

\examples{
v <- c(1,2)
vnorm(v)
}
back to top