Eye Controlled Interaction

From REALab Wiki
Revision as of 20:34, 3 December 2012 by Barvision (talk | contribs)
Jump to navigation Jump to search

Manual

u = udp('127.0.0.1',65000,'LocalPort',65000, 'InputBufferSize', 409600); u.Terminator = 'LF/CR'; %tell it about line endings fopen(u);


A = fscanf(u); C =regexp(A, '\t', 'split');


fclose(u); delete(u);