Jacob Woessner

Results 46 comments of Jacob Woessner

@larsoner @dominikwelke I am very interested in this. A while ago I was trying to recreate an EEGLAB Time-Frequency analysis pipeline in MNE and was having trouble getting my results...

Hello @cbrnr I was actually about to make an issue for this. I can try to work on this soon. I imported it into EEGLAB and I believe it just...

Hey @cbrnr! I got a little busy with some other things and forgot to make a PR. I'll make one this weekend. Is 1.7 planned on being released on April...

@cbrnr Do you still have your function? I could try adapting the tests to it.

@cbrnr I wrote something that works using pyedflib. One problem is that the final output differs more than the test allows (test is `1e-5`): ``` absolute tolerance: 0.01 Not equal...

It is `test_export_raw_edf`. I saw in your code you used `writeSamples`. In mine, I replace the current write function with [writePhysicalSamples](writePhysicalSamples). I am not sure why there is such a...

@cbrnr I made a PR whenever you have a chance to look :)

@larsoner Just curious, do you know why there is no `BaseEvoked` class? Is it just because its much simpler than the other data classes?

There is @agramfort? I was just curious why `Epochs` and `Raw` both inherit from a `BaseEpochs` and `BaseRaw` class, but Evoked does not.

Thnaks! @larsoner So you do think I should make a `CNTEvoked` class that inherits from `Evoked` or just call the `EvokedArray` constructor in the reader? Most of the io file...