For the explicit expression of the PCE surrogate:
myPCE.PCE.Basis.Indices
is a sparse matrix. To see the matrix in the usual full form, use
A = full(myPCE.PCE.Basis.Indices)
.
Every row contains one multi-index, each characterizing a basis function.
myPCE.PCE.Coefficients
is the corresponding vector of coefficients. Its i-th entry is the coefficient belonging to the basis function/multi-index in the i-th row of A
.
Note that UQLab automatically transforms the input distributions into standard distributions, as described in another post.