Misfit variation versus number of generated models
Posted: Tue Feb 03, 2009 5:38 pm
Here is a script to compute the minimum misfit achieved as a function of the number of model generated (the same as in the status window in dinver graphical interface).
Code: Select all
gpdcreport *.report -pm | awk '
BEGIN{m=1e99}
{
col=$2+3
if ($col<m) {
m=$col
print $1,m
}
}'