First time here? Check out the Help page!
1 | initial version |
The link you are sharing is not publically accessible. As for your second question; it sounds like your are not requesting enough output variables from the function exchangeDoublesWithSocket. Are you using the following manner of calling this function? [retVal, flaRea, simTimRea,variableFromEPtoMlab ] = exchangeDoublesWithSocket(sockfd, flaWri, length(u), simTimWri, variableFromMlabtoEP);
It sounds like you might not be requesting simTimRea (Current simulation time in read from the socket) and that this values is written to your vector u instead. If this is the case then you should take a look at the Matlab script simulateAndExit which also comes with BCVTB as well as the description in the header of the exchangeDoublesWithSocket function.
2 | No.2 Revision |
The link you are sharing is not publically accessible. As for your second question; it sounds like your are not requesting enough output variables from the function exchangeDoublesWithSocket. Are you using the following manner of calling this function? [retVal, flaRea, simTimRea,variableFromEPtoMlab ] = exchangeDoublesWithSocket(sockfd, flaWri, length(u), simTimWri, variableFromMlabtoEP);
It sounds like you might not be requesting simTimRea (Current simulation time in read from the socket) and that this values is written to your vector u instead. If this is the case then you should take a look at the Matlab script simulateAndExit which also comes with BCVTB as well as the description in the header of the exchangeDoublesWithSocket function.
3 | No.3 Revision |
The link you are sharing is not publically accessible. As for your second question; it sounds like your are not requesting enough output variables from the function exchangeDoublesWithSocket. Are you using the following manner of calling this function?
[retVal, flaRea, simTimRea,variableFromEPtoMlab ] = exchangeDoublesWithSocket(sockfd, flaWri, length(u), length(variableFromEPtoMlab), simTimWri, variableFromMlabtoEP);
It sounds like you might not be requesting simTimRea (Current simulation time in read from the socket) and that this values is written to your vector u instead. If this is the case then you should take a look at the Matlab script simulateAndExit which also comes with BCVTB as well as the description in the header of the exchangeDoublesWithSocket function.
4 | No.4 Revision |
The link you are sharing is not publically accessible. As for your second question; it sounds like your are not requesting enough output variables from the function exchangeDoublesWithSocket. Are you using the following manner of calling this function?
[retVal,
It sounds like you might not be requesting simTimRea (Current simulation time in read from the socket) and that this values is written to your vector u instead. If this is the case then you should take a look at the Matlab script simulateAndExit which also comes with BCVTB as well as the description in the header of the exchangeDoublesWithSocket function.