I’m having serious trouble debugging the following Matlab Warning:
Warning: Ignoring excess mask dialog entries in:
(path to block under mask of block of Simulink model I’m running)
Does anybody know what it even means? What are “mask dialog entries”?
It means that the block saved in your .mdl file has too many parameters saved in the MaskValueString parameter. This shouldn’t happen during normal use, but it can happen if you directly do a set_param the MaskValueString parameter on the masked block instead of using the dialog, and you end up setting more values than there are parameters. Simulink will just ignore all of the extra parameters in this case.
I think if you resave the model that the masked block lives in, the warning should go away. Just make sure your block has the right parameter values on the dialog.