Ciao,
scusate ma sono bloccato su un problema che mi sembra banale:
sto facendo un fit con Matlab:
f=fittype('a*(x^(-b))*exp(-x/c)');
options = fitoptions('Method','NonlinearLeastSquares','StartPoint',[100,1,1]);
[val1,val2,val3]=fit(x,y,f,options);
disp(val2);
e sullo schermo ottengo:
sse: 9.7986e-04
rsquare: 1.0000
dfe: 97
adjrsquare: 1.0000
rmse: 0.0032
come posso visualizzare il chi-quadro invece dell' r-square??