This file is indexed.

/usr/share/psychtoolbox-3/PsychOneliners/KbMapKey.m is in psychtoolbox-3-common 3.0.9+svn2579.dfsg1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
function q = KbMapKey(KeyNums,keyCode)
% q = KbMapKey(KeyNums,keyCode)
% Checks if any of specified keys is depressed
% input: vector of key numbers, keystate boolean vector as returned by e.g.
%        KbCheck.
% output: boolean vector specifying true for every key when its depressed
%
% SEE ALSO: KbCheck

% 2008     DN  Wrote it.
% 06-02-09 DN  A vector is now accepted as input
% 08-02-09 DN  Mario's advice: changed to get keyCode (returned by, e.g.
%              KbCheck) as input instead of call KbCheck itself -> more
%              flexible

q = ismember(KeyNums,find(keyCode));