https://github.com/cran/spate
Raw File
Tip revision: 20b4d4bea90274d57f50b28b72478ce190dc4c34 authored by Fabio Sigrist on 25 January 2015, 00:00:00 UTC
version 1.4
Tip revision: 20b4d4b
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