stimfunction {neuRosim} | R Documentation |
Generates a stimulus boxcar vector for the specified time duration and microtime resolution based on the user-defined onsets and durations.
stimfunction(totaltime, onsets, durations, accuracy)
totaltime |
Total time of the design in seconds. |
onsets |
Vector representing the onsets of the stimulus in seconds. |
durations |
Vector representing the durations of the stimulus in seconds. |
accuracy |
Microtime resolution in seconds. |
If duration is a single number, it is assumed that all stimulus onsets have the same duration.
A vector in microtime resolution specifying the stimulus boxcar function in 1-0 coding.
M. Welvaert
total <- 100 os <- c(1, 21, 41, 61, 81) d <- 10 out <- stimfunction(total, os, d, 0.1)