Skip to content
View jdkoen's full-sized avatar

Organizations

@koenlab
Block or Report

Block or report jdkoen

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. roc_toolbox roc_toolbox Public

    ROC Toolbox for Matlab

    MATLAB 15 10

  2. template_eeg_pipeline template_eeg_pipeline Public template

    template preprocessing scripts for setting up a new EEG study

    Python

  3. stim_management_matlab stim_management_matlab Public

    This is a set of functions meant to help with managing stimuli and data storage for psychology and cognitive neuroscience experiments created with Matlab based experiment presentation programs, suc…

    MATLAB 2

  4. erp_measures_mne.py erp_measures_mne.py
    1
    # These are functions to estimate a variety of ERP amptlitude and latency features that interact with mne-python
    2
    
                  
    3
    import numpy as np
    4
    import pandas as pd
    5
    from scipy.integrate import trapezoid
  5. This is a script that creates a rand... This is a script that creates a randomized list of stimuli (here, faces, scenes, and objects), that are repeated with a lag in a specified range. This is generic and can be modified for more complex constraints.
    1
    import numpy as np
    2
    import pandas as pd
    3
    from random import shuffle
    4
    from pathlib import Path
    5