Change the maximum misfit to plot in the dialog box that pops up when viewing profiles, dispersion curves,...
All graphics of geopsy package have the same features: they can be exported to any image format (right click on axes).
About your second question, I would need more details to comment it... it the inversion advances, more model are generated and the misfit is expected to decrease. You can read the curve the other way round but I do not know what for. You may refer to active number of models... in this case it may oscillate during the inversion, this is normal behavior.
How to save dinver best fitting models as ascii files?
Re: How to save dinver best fitting models as ascii files?
Thank you sir for ur ans...Another problem i am facing...Can i see how many profiles are generating within a specified value of maximum misfit and also Can i save the profiles to a text file on the basis of maximum misfit...Such as, I want to know number of profiles and save them upto a maximum misfit value of 0.15 or 0.5 or 0.6......
Re: How to save dinver best fitting models as ascii files?
Just keep the original .report file and analyze it with gpdcreport.
For instance to count the models with a misfit less than 1:
Option -pm prints one line per model with all parameter values and the last column, the misfit. wc is system command that counts the lines. The number will be the true number of models plus 1, due to the first line of comments, to get directly the good number, you have to filter them out:
For instance to count the models with a misfit less than 1:
Code: Select all
gpdcreport -pm -m 1 my.report | wc -l
Code: Select all
gpdcreport -pm -m 1 my.report | grep -v "^#" | wc -l