Hi,
I was using QUESO 0.56.1, I have some questions about example simpleStatisticalInverseProblem.
In example_compute.C, there is a matrix
QUESO::GslMatrix proposalCovMatrix(paramSpace.zeroVector());
proposalCovMatrix(0,0) = 8.; proposalCovMatrix(0,1) = 4.;
proposalCovMatrix(1,0) = 4.; proposalCovMatrix(1,1) = 16.;
What does this matrix mean? I can't find related information on user's manual.
Also, I can't quite understand how are the parameters passed into likelihood function. Here is the likelihood function:
double likelihoodRoutine(
const QUESO::GslVector& paramValues,
const QUESO::GslVector* paramDirection,
const void* functionDataPtr,
QUESO::GslVector* gradVector,
QUESO::GslMatrix* hessianMatrix,
QUESO::GslVector* hessianEffect)
Thank you very much!
Best regards.
Han