Borrar filtros
Borrar filtros

Error in Generalize​dLinearMod​el.fit

2 visualizaciones (últimos 30 días)
Francisco
Francisco el 7 de Oct. de 2015
Respondida: Francisco el 8 de Oct. de 2015
I'm trying to fit a GLM and I get a weird error I cannot find the reason for. The error message is below. It only happens if I specify distribution 'gamma' (which wouldbe the appropriate one) or 'inverse gaussian', but it does not happen for distributions 'normal' or 'poisson' (although they wouln't be the ones to use). There are no NaNs either in the predictors or the response. The data tables are too large to include here.
Any clues?
Thanks
Error using sumskipnan (line 164)
weighted sumskipnan requires sumskipnan_mex
Error in var (line 84)
[y,n,ssq] = sumskipnan(x,DIM,W);
Error in GeneralizedLinearModel/logLikelihoodNull (line 954)
b0 = var(model.y_r,model.w_r) ./ mu0;
Error in classreg.regr.ParametricRegression/postFit (line 367)
model.LogLikelihoodNull = logLikelihoodNull(model);
Error in classreg.regr.TermsRegression/postFit (line 370)
model = postFit@classreg.regr.ParametricRegression(model);
Error in GeneralizedLinearModel/postFit (line 891)
model = postFit@classreg.regr.TermsRegression(model);
Error in classreg.regr.FitObject/doFit (line 220)
model = postFit(model);
Error in GeneralizedLinearModel.fit (line 1302)
model = doFit(model);
  1 comentario
Walter Roberson
Walter Roberson el 7 de Oct. de 2015
The source for it appears to be officially http://pub.ist.ac.at/~schloegl/matlab/NaN/ according to http://openmp.org/wp/whos-using-openmp/
I have no information about why it might be missing.

Iniciar sesión para comentar.

Respuestas (1)

Francisco
Francisco el 8 de Oct. de 2015
Found the cause (I think). There is a function in the NaN-toolbox called 'var', same as MATLAB function for variance, and apparently it takes precedence. 'var' (in NaNtoolbox) calls 'sumskipnan' and causes the error. Still, both 'sumskipnan.m' and 'sumskipnan_mex' WERE there in the same folder, so there shouldn't be any error. I deleted the NaNToolbox and the error went away... for now.

Categorías

Más información sobre Multivariate Models en Help Center y File Exchange.

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by