Toggle navigation
Discussions
Documentation
OpenSesame
DataMatrix
JASP
PyGaze
Expyriment
PsychoPy
Blog
Sign In
Go!
fladd
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Register
Supported by
Back to Profile
fladd
About
Username
fladd
Joined
March 2016
Visits
93
Last Active
January 30
Roles
Member, Moderator
Thanked
16
Activity
Thanked
16
Discussions
2
Comments
157
The variable `expyriment.control.defaults.open_gl` can have the following values:
```
0/False = no OpenGL (no vsync / no blocking)
1 = OpenGL (vsync / no bl…
Thanked by
1
peterk
Make first sure that setuptools and wheel are up to date:
```
pip install -U setuptools
pip install -U wheel
```
Then from within the `expyriment-ma…
Thanked by
1
yoniastern
No. OpenGL is crucial for that. And even then I would suggest to check with the test suite.
Thanked by
1
peterk
That is because `fast_stimuli == "cruel"` and `fast_stimuli == "love"` can never be true, since `fast_stimuli` is a list, and "cruel" and "love" are strings.
Thanked by
1
Tanto
Here is a description of the plugin system in Expyriment: http://docs.expyriment.org/Plugins.html.
You can use the MIDI input like this:
```
import expyriment.io.extras
Thanked by
1
platzf
Hi Friedrich,
there is no particular code for recording musical performances, but there is MIDI input and output available as a plugin (see http://stash.expyriment.org). I am not sure …
Thanked by
1
platzf
I moved it to the OpenSesame section (assuming this is where it belongs).
Thanked by
1
Sabine
Hi there,
what exactly do you want to do? Since you mention MEG, it seems that you would like to send markers to the MEG system?
If so, you can use the `io.MarkerOutput`…
Thanked by
1
Jo_ALV
So from what I can see is that you are adding all 6 stimuli to the same canvas. From your description above this is not what you want...
Simply creating a canvas stimulus in each trial, would …
Thanked by
1
Tanto
Not sure if I understand you correctly, but wouldn't this work:
```
def create_random_stim():
sequence = ["R"] * 27 + ["B"]
expyriment.design.randomize.shu…
Thanked by
1
Tanto
What I meant is, you put in the data manually into the data file object (usually by doing something like `exp.data.add(my_data)`. So, since you already have the data, before you manually put it into …
Thanked by
1
PMKraemer
Prepare the following stimuli before stimulus presentation:
- `mask = expyriment.stimuli.Picture("...")`
- `prime = expyriment.stimuli.Picture("...")`
- `target = expyriment.stim…
Thanked by
1
ariannaf
It is not clear to me what your goal is. I understand that your code apparently does not do what you want it to do, but I don't understand what it is you want it to do.
You first menti…
Thanked by
1
ariannaf
Given the refresh rate of 60Hz, here is what your script does in case SOA is 50:
- it presents the screen_mask stimulus for 3 frames (50 ms)
- it presents the prime_screen s…
Thanked by
1
ariannaf
Dear Arianna,
What is your screen refresh rate? I am asking, because you use timings (49ms) that do not seem to fall at multiples of common refresh rates (e.g. 60Hz, 100Hz, 120Hz).
Thanked by
1
ariannaf
Mmh, I am still a bit puzzled about why this happens. We will look closer into it.
Thanks for the suggestion of a tutorial for more advanced users. This is certainly a good idea.
Thanked by
1
Tanto