doe_prediction Derived Type

type, public :: doe_prediction

Prediction with uncertainty quantification.


Components

Type Visibility Attributes Name Initial
real(kind=real64), public :: confidence_level

Confidence level (e.g., 0.95 for 95% CI).

real(kind=real64), public, allocatable, dimension(:) :: confidence_lower

Lower confidence interval bounds.

real(kind=real64), public, allocatable, dimension(:) :: confidence_upper

Upper confidence interval bounds.

real(kind=real64), public, allocatable, dimension(:) :: predicted_values

Predicted response values.

real(kind=real64), public, allocatable, dimension(:) :: prediction_lower

Lower prediction interval bounds.

real(kind=real64), public, allocatable, dimension(:) :: prediction_upper

Upper prediction interval bounds.