We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
for example,
AIC = ModelComparison_AIC_BIC(MemDataset(3), {SwapModel(), StandardMixtureModel()})
would report:
Error using mle>validateInputTypes (line 769) Expected input to be one of these types:
single, double
Instead its type was struct.
Error in mle (line 258) validateInputTypes(data, cens, freq, alpha, ntrials, theta, mu, truncation, start);
Error in MLE (line 42) vals{c} = mle(data, 'logpdf', model.logpdf, 'start', model.start(c,:), ...
Error in ModelComparison_AIC_BIC (line 69) [params, logLike(md)] = MLE(data, models{md});
The text was updated successfully, but these errors were encountered:
I commented off the Validate interval censored data & Remove any NaN values & validateInputTypes in mle.m but would not recommend doing it
Validate interval censored data
Remove any NaN value
validateInputTypes
Sorry, something went wrong.
No branches or pull requests
for example,
AIC = ModelComparison_AIC_BIC(MemDataset(3), {SwapModel(), StandardMixtureModel()})
would report:
Error using mle>validateInputTypes (line 769)
Expected input to be one of these types:
single, double
Instead its type was struct.
Error in mle (line 258)
validateInputTypes(data, cens, freq, alpha, ntrials, theta, mu, truncation, start);
Error in MLE (line 42)
vals{c} = mle(data, 'logpdf', model.logpdf, 'start', model.start(c,:), ...
Error in ModelComparison_AIC_BIC (line 69)
[params, logLike(md)] = MLE(data, models{md});
The text was updated successfully, but these errors were encountered: