You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

OV_setStimulationsInputHeader.m 427B

12345678910111213141516
  1. % OV_MATLAB toolkit
  2. % OV_setChannelLocalizationInputHeader.m
  3. % -------------------------------
  4. % Author : Laurent Bonnet (INRIA)
  5. % Date : 28/07/2011
  6. % Set the header information on a Stimulation input.
  7. function box_out = OV_setStimulationsInputHeader(box_in, input_index)
  8. box_in.inputs{input_index}.header.type = 'Stimulation Stream';
  9. box_in.inputs{input_index}.buffer = {};
  10. box_out = box_in;
  11. end