rowlesmr
Hi all
Is it possible to write the correlation matrix or the values of the bkg function to a file of my choosing?
Is there a Get(something) for that?
This is for multiple refinements, so the ability to append to a file is necessary.
Thanks
Matthew
johnsoevans
Dear Matthew,
I always feel guilty when nobody has replied after a couple of weeks!
I've no idea how to do the correlation matrix. For bkg I guess you could just rewrite the function yourself as a fit_obj. I fear that suggestion is a grandmother/eggs one!
Sorry it's no more help.
John
alancoelho
>Is it possible to write the correlation matrix or the values of the
>bkg function to a file of my choosing?
Sorry for not replying earlier; been on holidays.
At present there's no way of outputting the correlation matrix or bkg directly to a file.
bkg values can be indirectly written to a file by simply commenting out everything except bkg and then using Out_Ycalc.
rowlesmr
Thanks Alan, John.
I did end up writing my own chebyshev fit_obj so I could get out the prm values.
Matthew
alancoelho
Hi again Matthew
the bkg function can be assigned individual names; ie.
prm b0 0
prm b1 0
prm b2 0
bkg =b0; =b1; =b2;
rowlesmr
oooh.
I didn't know that.
Ta a lot.