Computes the cosine expansion terms used to modify the shape of distance likelihood functions.
cosine.expansion(x, expansions)
Arguments
x: A numeric vector of distances at which to evaluate the expansion series. For distance analysis, x is of the proportion of a strip transect's half-width at which a group of individuals were sighted, i.e., d/w.
expansions: A scalar specifying the number of expansion terms to compute. Must be one of the integers 1, 2, 3, 4, or 5.
Returns
A matrix of size length(x) X expansions. The columns of this matrix are the cosine expansions of x. Column 1 is the first expansion term of x, column 2 is the second expansion term of x, and so on up to expansions.
Details
There are, in general, several expansions that can be called cosine. The cosine expansion used here is:
First term :
h1(x)=cos(2πx),h1(x)=cos(2∗Pi∗x),
Second term :
h2(x)=cos(3πx),h2(x)=cos(3∗Pi∗x),
Third term :
h3(x)=cos(4πx),h3(x)=cos(4∗Pi∗x),
Fourth term :
h4(x)=cos(5πx),h4(x)=cos(5∗Pi∗x),
Fifth term :
h5(x)=cos(6πx),h5(x)=cos(6∗Pi∗x),
The maximum number of expansion terms computed is 5.