Skip to content

Commit

Permalink
forgot to define offset in LinearModelFunction
Browse files Browse the repository at this point in the history
  • Loading branch information
behinger committed Mar 11, 2024
1 parent de8c2a8 commit 57a7f68
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/predefinedSimulations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ function predef_eeg(

# component / signal
sfreq = 100,
p1 = (p100(; sfreq = sfreq), @formula(0 ~ 1), [5], Dict()),
n1 = (n170(; sfreq = sfreq), @formula(0 ~ 1 + condition), [5, -3], Dict()),
p3 = (p300(; sfreq = sfreq), @formula(0 ~ 1 + continuous), [5, 1], Dict()),
p1 = (p100(; sfreq = sfreq), @formula(0 ~ 1), [5], Dict(), 0),
n1 = (n170(; sfreq = sfreq), @formula(0 ~ 1 + condition), [5, -3], Dict(), 0),
p3 = (p300(; sfreq = sfreq), @formula(0 ~ 1 + continuous), [5, 1], Dict(), 0),
kwargs...,
)

Expand Down

0 comments on commit 57a7f68

Please sign in to comment.