window_list | R Documentation |
This function generates a list of of sliding windows conditional on two parameters: the length of each window (number of samples) and the total number of samples present in the data.
window_list(window_size, length, window_step = 1)
window_size |
An integer number specifying the number of samples per window. |
length |
An integer number specifying the total number of samples. |
window_step |
Optional; an integer number specifying the distance between the first entry of adjacent windows. Default is |
A list of samples of sample indices. Each list entry represents one window.
window_list(window_size = 6, length = 40)
window_list(window_size = 6, length = 40, window_step = 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.