필터 지우기
필터 지우기

Display numerical output with sprintf?

조회 수: 2 (최근 30일)
Chelsea
Chelsea 2014년 11월 19일
댓글: Chelsea 2014년 11월 19일
Hi,
I am creating a Psychtoolbox script where a subject completes button presses. The number of button presses he or she completes is defined as "numPresses". Later, I want to display that number (from earlier in the script). I think I use sprintf, but am not sure how to do it correctly. Below is my attempt. Thanks!
Screen(window,'FillRect',0);
Screen(window, 'Flip');
Screen(window, disp(sprintf('You completed %d key presses, numPresses.')), ceil(resX/2)-60, ceil(resY/2), 255);
Screen(window, 'Flip');
pause(2.0);
I have tried it with both "disp" and as "Screen(window, 'DrawText',sprintf...). The error I get is below...Error using disp Too many output arguments.
Error in effrtattempt (line 190)
Screen(window, disp(sprintf('You completed %d key presses, goalReachedCount.')), ceil(resX/2)-60, ceil(resY/2),
255);
Thanks!

채택된 답변

Thorsten
Thorsten 2014년 11월 19일
text = sprintf('You completed %d key presses.', numPresses);
Screen(window, 'DrawText', text, ceil(resX/2)-60, ceil(resY/2), 255);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Timing and presenting 2D and 3D stimuli에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by