fprintf(['# True Positive: %d \n',...
'# False Positive: %d \n',...
'# True Negative: %d \n',...
'# False Negative: %d \n,',...
numTruePos,...
numFalsePos,...
numTrueNeg,...
numFalseNeg]);
но тогда я получаю ошибку:
??? Error using ==> horzcat
The following error occurred converting from logical to
char:
Error using ==> char
Conversion to char from logical is not possible.
Error in ==> toyProblem at 40
fprintf(['# True Positive: %d \n',...