Skip to content

Commit ad7bf77

Browse files
authored
Merge pull request #10 from Remi-Gau/dev
add stimulus scaling and dot background
2 parents 2db0595 + f229cd0 commit ad7bf77

47 files changed

Lines changed: 532 additions & 296 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
*.m~
22
*.mat
33
octave-workspace
4-
Sub-*
4+
*.asv
55
sub-*
66
*.tif
7+
*.png
8+

.travis.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Travis CI (https://travis-ci.org/)
2+
# This will only work on your repo if you have an account on travis and you
3+
# have set it up to run continuous integration on this this repo
4+
5+
# Linux distribution (bionic beaver)
6+
dist: bionic
7+
8+
# Language and version
9+
language: python
10+
python:
11+
- "3.6" # current default Python on Travis CI
12+
13+
cache:
14+
apt: true # only works with Pro version
15+
16+
# Install the miss_hit linter
17+
before_install:
18+
- pip3 install miss_hit
19+
20+
# Lists all the tasks we will do
21+
jobs:
22+
include:
23+
- name: "miss_hit: checking code quality"
24+
script: mh_metric . --ci
25+
- name: "miss_hit: checking code style"
26+
script: mh_style .
27+

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ Get in touch by reporting an issue or sending a pull request
8484

8585
Original version by [Sam Schwarzkopf](https://sampendu.net/sam-schwarzkopf/) (27th July 2010)
8686

87+
For more recent version of the same code () check it here on OSF: [DOI 10.17605/OSF.IO/2RGSM](https://osf.io/2rgsm/)
88+
8789
Some modifications (esp for eye tracking) have been done by [Tim Rohe](https://scholar.google.de/citations?user=mFO_FSAAAAAJ&hl=de).
8890

8991
Code cleaning and refactoring was done by Rémi Gau.

docs/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Documentation

initEnv.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,6 @@ function addDependencies()
101101
pth = fileparts(mfilename('fullpath'));
102102
addpath(genpath(fullfile(pth, 'lib', 'CPP_BIDS', 'src')));
103103
addpath(genpath(fullfile(pth, 'lib', 'CPP_PTB', 'src')));
104-
addpath(genpath(fullfile(pth, 'subfun')));
104+
addpath(genpath(fullfile(pth, 'src')));
105105

106106
end

input/displayCheckerboard.m

Lines changed: 0 additions & 101 deletions
This file was deleted.

input/genCheckerboard.m

Lines changed: 0 additions & 16 deletions
This file was deleted.

input/genColRipples.m

Lines changed: 0 additions & 26 deletions
This file was deleted.

input/genRipples.m

Lines changed: 0 additions & 25 deletions
This file was deleted.

0 commit comments

Comments
 (0)