Hello all,
I use pathfinder to set the initial values, and I roughly understand the idea beneath it. However, I wonder about the transformations. In my code I define the variable real logphi
and then do its transformation:
real phi = exp(logphi);
When I run the pathfinder, it gives me:
'logphi': array(-1.29877475), 'phi': array(632.36272619)
From one side, I know that I may not need to worry, from the other side, why it would not give me 'phi': array(exp(-1.29877475))
? This would a bit more reasonable.
Thank you for clarification in advance