This is a very simple question, but I'm starting to doubt myself:
I have a mixed model which I estimate in Matlab with fitglm
mdl = fitglme(data, 'DV ~ 1 + IV + (1+IV|subject)')
The following piece of code extracts the random effects coefficients (i.e. the individual b0 and b1's)
[B,BNames,stats]= randomEffects(mdl)
Now I'm wondering: Are those resulting coefficients deviations from the main fixed effect coefficient? So, say to interpret an individual random intercept, I would need to take the main intercept (fixed) and add the random intercept to it? And the same with the random slope?