Displaying 1 result from an estimated 1 matches for "sd_dax".
Did you mean:
nd_dax
2009 Sep 23
1
Maximum Likelihood Est. regarding the degree of freedom of a multivariate skew-t copula
...aybe 1000 or even more) Is there a way to make it faster????
THX, John Reichenb?cher
PS: The attachment are the time series, that are used
data<-read.table("NIKKEI.txt", header=T)
attach(data)
data<-read.table("DAX.txt", header=T)
attach(data)
my_dax<-mean(dax)
sd_dax<-sqrt(var(dax))
my_nik<-mean(nik)
sd_nik<-sqrt(var(nik))
P_dax<-pnorm(dax,mean=my_dax, sd=sd_dax)
P_nik<-pnorm(nik,mean=my_nik, sd=sd_nik)
xi<-vector(length=2)
Omega <- matrix(nrow=2, ncol=2)
alpha<-vector(length=2)
u1<-vector(length=length(P_dax))
u2<-vector(length...