PsychToolbox中的打印变量值



我正在寻找一种在PsychToolbox(MATLAB(中打印变量值的方法。我正在寻找类似fprintf的东西:例如。fprintf('%s%dn','Your score: ', score);

我猜想DrawFormattedText()是我要寻找的功能,但是有人可以建议如何添加一个不是字符串的变量?

谢谢。

使用sprintf将数据格式化为string,然后将string传递给DrawFormattedText函数,从PsychToolbox如下:

score = rand;    % Random score value.
DrawFormattedText(win, sprintf('Your score: %dn', score));

相关内容

  • 没有找到相关文章

最新更新