R/sphere.map.R

Defines functions sphere.map

sphere.map<-function(theta)
{
x<-matrix(0,2,1)
x[1]<-sin(theta)
x[2]<-cos(theta)

return(x)
}

Try the denpro package in your browser

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

denpro documentation built on May 2, 2019, 8:55 a.m.