You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Onderaan de pagina worden de beta waarden in t waarden geconverteerd: t = (c' * b) ./ sqrt(var(e) * (c' * (x'*x) * c))
Ik vraag me of dit het volgende dient te zijn: t = (c' * b) ./ sqrt(var(e) * (c' * inv(x'*x) * c)) << nadruk op de inverse
In ft_statfun_indepsamplesregrT wordt ook de inverse matrix gebruikt voor de SE berekening (invcpmat):
cpmat = designmat'*designmat;
invcpmat = inv(cpmat);
En even later:
se=sqrt(invcpmat(nblocks+1,nblocks+1)*resvar);
s.stat=B(:,nblocks+1)./se;
Als ik de inverse gebruik in de formule van het example script, krijg ik dezelfde t-waarden als met ft_statfun_indepsamplesregrT en als met bijv. glmfit (matlab functie)
and I believe he is right.
The text was updated successfully, but these errors were encountered:
@StolkArjen reported in a personal message that on page https://www.fieldtriptoolbox.org/example/nirs_glm/
and I believe he is right.
The text was updated successfully, but these errors were encountered: