dg {CGE} | R Documentation |
This function works in the way analogous to the diag function of Matlab.
dg(x)
x |
a number, vector or square matrix. |
If x is a number, dg returns itself. If x is a vector, a one-row matrix or a one-column matrix, dg returns a matrix with x as the main diagnol. Otherwise dg returns diag(x).
LI Wu <liwu@staff.shu.edu.cn>
diag(matrix(2, 3))
dg(matrix(2, 3))