mfisch
Hello all
is it possible to bring the value and the esd of a refined parameter to (fixed) user-defined parameters independently, e.g:
a lp_a 7.56545`_0.00041
then i would like to get something like this
local test1 = value_of_lp_a;: 7.56545
local test2 = esd_of_lp_a;: 0.00041
Thanks for suggestions,
Martin
rowlesmr
Give this a go:
local test1 = lp_a; : 7.56545
local test2 = Get_Prm_Error(lp_a); : 00041
It should work, according to the manual.
mfisch
Hello Matthew
I did of course try that, however, it doesn't work. I get the following error after the refinement is complete:
Get_Prm_Error - Parameter is not a variable
I tried different syntaxes of the Get_Prm_Error, no success.
Any other ideas?