R/fsin.R

Defines functions fsin

Documented in fsin

#'@title Function calculating basis sine function
#'
#'@description This function computes the normalized sine function.
#'
#'@param s    Parameter of function
#'
#'
#'@return \item{f}{Normalized sine function}
#'
#'@keywords internal
#'
#'@export

fsin <- function(s)
  {
  f=sqrt(2) * sin(2 * pi * s)
  return( f)
}

Try the GenOU package in your browser

Any scripts or data that you put into this service are public.

GenOU documentation built on Aug. 28, 2025, 9:09 a.m.