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
I get the following error message while running simulations with tapas_simModel for the tapas_hgf_binary_pu_tbt model:
tapas_hgf_binary_pu_tbt
Error using tapas_hgf_binary_pu_tbt_namep Cannot determine number of levels
This can be fixed by modifying the formula for computing the number of levels in tapas_hgf_binary_pu_tbt_namep.m, line 13:
tapas_hgf_binary_pu_tbt_namep.m
l = (length(pvec) + 1)/5; -> l = (length(pvec)-1)/5;
After the fix, the simulation runs.
I have a couple of questions regarding this issue:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I get the following error message while running simulations with tapas_simModel for the
tapas_hgf_binary_pu_tbt
model:This can be fixed by modifying the formula for computing the number of levels in
tapas_hgf_binary_pu_tbt_namep.m
, line 13:l = (length(pvec) + 1)/5; -> l = (length(pvec)-1)/5;
After the fix, the simulation runs.
I have a couple of questions regarding this issue:
The text was updated successfully, but these errors were encountered: