diag is the normal MATLAB solution (as pointed out by posdef.) Thus
D = diag(vec);
gives you a matrix with diagonal elements as needed.
Perhaps better in some applications is to create a sparse matrix, since a diagonal matrix is quite sparse. So if you are doing matrix multiplies this will greatly help in reducing the number of unnecessary operations.
n = length(vec);
D = spdiags(vec(:),0,n,n);
If you truly wanted to do the assignment in an explicit form, use a single linear index like this:
n = length(vec);
D = zeros(n);
D(cumsum([1,repmat(n+1,1,n-1)])) = vec;
Or you could use the sub2ind function to convert a set of indices into a single index.