<t>Dear All:I want to draw the density of Gaussian copula with student's t marginals. I use the matlab program in the following:p=zeros(num,num);for i = 1:num for j = 1:num x1(i) = tinv(u(i),v); x2(j)= tinv(u(j),v); tmp1=1/(2*pi*(1-R^2)^0.5); tmp2=(x1(i).^2-2*R.*x1(i).*x2(j)+x2(j).^2); p(i,j)=tmp1*e...