Learn R Programming

polychaosbasics (version 1.1-0)

PCESI: Compute Sensitivity Indexes from a PCE Design

Description

Calculation of PCE sensitivity indexes and related results.

Usage

PCESI(poly)

Arguments

poly
an object of class PCEpoly. The design to analyze (a Legendre polynomial).

Value

An object of class PCEfit.

See Also

  • Functions polyLeg and analyticsPolyLeg, creators of objects from class PCEpoly.
  • Class PCEfit for description of the returned structure.

Examples

Run this code
# Dataset simulated by  using the Ishigami function 
nlhs <- 200 # number of rows 
degree <- 6 # polynomial degree
set.seed(42)# fix the seed for reproductible results
pce <- analyticsPolyLeg(nlhs, degree, 'ishigami')# build the PCE design
ret <- PCESI(pce) # compute the PCE sensivity indexes
print(ret, all=TRUE)

Run the code above in your browser using DataLab