local_state_space_iteration_2 MEX: fix error message

time-shift
Sébastien Villemot 2019-06-28 17:48:39 +02:00
parent 67a49fc67b
commit f45738c09e
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
1 changed files with 3 additions and 1 deletions

View File

@ -221,13 +221,15 @@ mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
prhs[8] yhat_ [double] [OPTIONAL] n×s array, time t particles (pruning additional latent variables).
prhs[9] ss [double] [OPTIONAL] m×1 array, steady state for the union of the states and the observed variables (needed for the pruning mode).
prhs[9 or 11] [double] num of threads
plhs[0] y [double] n×s array, time t+1 particles.
plhs[1] y_ [double] n×s array, time t+1 particles for the pruning latent variables.
*/
// Check the number of input and output.
if (nrhs != 9 && nrhs != 11)
mexErrMsgTxt("Eight or ten input arguments are required.");
mexErrMsgTxt("Nine or eleven input arguments are required.");
if (nlhs > 2)
mexErrMsgTxt("Too many output arguments.");