Hi, Steve,
I am afraid that we can not update the nlfit dialog to show derived parameter there.
However, we can get it via Labtalk, please look at the sample code as below
nlbegin iy:=(1,2) func:=gauss nltree:=nlt; //Fit data stored in the first two column of active worksheet with function Gauss
for (ii=1; ii<=400; ii++)
{
nlfit 1;
nlt.FWHM =; //FWHM is the derived parameter in the Gauss function
if (nlt.fitstatus==100) //Exit if fit is converged
break;
}
nlend;