CC.quad: ~~function to do ... ~~

Description Usage Arguments Details Value Note Author(s) References See Also Examples

View source: R/quaddisc.R

Description

~~ A concise (1-5 lines) description of what the function does. ~~

Usage

1
CC.quad(iN)

Arguments

iN

~~Describe iN here~~

Details

~~ If necessary, more details than the description above ~~

Value

~Describe the value returned If it is a LIST, use

comp1

Description of 'comp1'

comp2

Description of 'comp2'

...

Note

~~further notes~~

~Make other sections like Warning with Warning .... ~

Author(s)

~~who you are~~

References

~put references to the literature/web site here ~

See Also

~~objects to See Also as help, ~~~

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (iN) 
{
    vI <- matrix(0:(iN - 1), iN, 1)
    vZ <- as.vector(0.5 - 0.5 * cos(((2 * vI + 1) * pi)/(2 * 
        iN)))
    vD <- c(1, rep(2, iN - 1))/iN
    vK <- matrix(2 * (1:iN) - 1, 1, iN)
    mCt <- cos(pi * (vI %*% vK)/(2 * iN))
    vS <- as.matrix(1:iN)
    vS <- -2/(vS * (vS - 2))
    vS[seq(2, length(vS), by = 2)] <- 0
    vW <- as.vector(t(0.5 * crossprod(vS * vD, mCt)))
    return(list(nodes = vZ, weights = vW))
  }

quaddisc documentation built on May 2, 2019, 4:50 p.m.