~ubuntu-branches/ubuntu/trusty/psychtoolbox-3/trusty-proposed

« back to all changes in this revision

Viewing changes to Psychtoolbox/PsychBasic/Contents.m

  • Committer: Package Import Robot
  • Author(s): Yaroslav Halchenko
  • Date: 2013-11-19 23:34:50 UTC
  • mfrom: (3.1.4 experimental)
  • Revision ID: package-import@ubuntu.com-20131119233450-f7nf92vb8qavjmk8
Tags: 3.0.11.20131017.dfsg1-3
Upload to unsable since fresh glew has arrived to sid!

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
%     GetChar              - Wait for keyboard character and return it.
19
19
%     GetPID               - Get the process ID of the MATLAB process.
20
20
%     GetMouse             - Get mouse position. 
21
 
%     GetMouseWheel        - Get mouse wheel position delta on a wheel mouse. OS X only for now.
 
21
%     GetMouseWheel        - Get mouse wheel position delta on a wheel mouse.
22
22
%     GetSecs              - Time since startup with high precision. 
23
23
%     GetSecsTick          - Duration of one tick of the GetSecs clock.
24
24
%     GetTicks             - Number of 60.15 Hz ticks since startup. 
25
25
%     GetTicksTick         - Duration of one tick of the GetTicks clock.
26
26
%     HideCursor           - Hide cursor.
27
 
%     InitCocoaEventBridge - Prepare GetChar helper "CocoaEventBridge" 
28
27
%     IOPort               - A I/O driver for access to serial ports.
29
28
%     KbCheck              - Get instantaneous keyboard state.
30
29
%     KbEventAvail         - Return number of pending keyboard events in ringbuffer.
33
32
%     KbKeysAction         - Return an incremented or decremented value, depending on keys pressed.
34
33
%     KbName               - Convert keycode to key name and vice versa.
35
34
%     KbPressWait          - Wait for key press, make sure no keys pressed before.
36
 
%     KbQueueCreate        - Create keyboard queue (OS/X only).
37
 
%     KbQueueRelease       - Destroy keyboard queue (OS/X only).
38
 
%     KbQueueFlush         - Empty keyboard queue (OS/X only).
 
35
%     KbQueueCreate        - Create keyboard queue.
 
36
%     KbQueueRelease       - Destroy keyboard queue.
 
37
%     KbQueueFlush         - Empty keyboard queue.
39
38
%     KbQueueStart         - Start recording of key presses into queue.
40
39
%     KbQueueStop          - Stop recording of key presses into queue.
41
40
%     KbQueueCheck         - Check keyboard queue for key presses/releases.
42
41
%     KbReleaseWait        - Wait until all keys on keyboard are released.
43
42
%     KbStrokeWait         - Wait for single, isolated key stroke.
44
 
%     KbTriggerWait        - Wait for trigger keys on keyboard (OS/X only).
 
43
%     KbTriggerWait        - Wait for trigger keys on keyboard.
45
44
%     KbWait               - Wait until at least one key is pressed and return its time.
46
45
%     ListenChar           - Start GetChar queue.
 
46
%     LoadPsychHID         - Helper function for loading PsychHID on MS-Windows.
47
47
%     MachAbsoluteTimeClockFrequency - Mach Kernel time measurement.  
48
48
%     PredictVisualOnsetForTime - Predict stimulus onset for given Screen('Flip') 'when' timespec.
49
49
%     psychassert          - Drop in replacement for Matlabs assert().
55
55
%     PsychtoolboxDate     - Current version date, e.g. '1 August 1998'
56
56
%     PsychtoolboxVersion  - Current version number, e.g. 2.32
57
57
%     PsychWatchDog        - Watchdog mechanism and error handler for Psychtoolbox.
 
58
%     PsychTweak           - Tweak Psychtoolbox low-level operating parameters.
58
59
%     RemapMouse           - Map mouse position to stimulus position.
59
60
%     RestrictKeysForKbCheck - Restrict operation of KbCheck et al. to a subset of keys on the keyboard.
60
61
%     Screen               - Control the video display. ** Type "Screen" for a list. ** 
94
95
%     PatchTrap           - Disable Mac OS routines. Dangerous! (MEX)
95
96
%     PrepareScreen       - Called by Screen when first window is opened on a screen.
96
97
%     Priority            - Disable interrupts. Dangerous! (MEX)
97
 
%     PsychSerial         - Use Mac serial port. (MEX)
98
98
%     PsychtoolboxDate    - Current version date, e.g. '1 August 1998'
99
99
%     PsychtoolboxVersion - Current version number, e.g. 2.32
100
100
%     RestoreScreen       - Called by Screen when last window is closed (among all screens) or Screen.mex is flushed.