R/Dx.R

Defines functions Dx

Dx <-
function(x){
l<-length(x)
dx<-array(0,c(l,l))
for (i in 1:l)
dx[i,i]<-x[i]
return(dx)}

Try the intpoint package in your browser

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

intpoint documentation built on May 29, 2017, 8:59 p.m.