Skip to content

Commit 1fe86ef

Browse files
committed
add copyright
1 parent 10b7afd commit 1fe86ef

File tree

11 files changed

+40
-23
lines changed

11 files changed

+40
-23
lines changed

initEnv.m

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
1-
%
2-
% 1 - Check if version requirements
3-
% are satisfied and the packages are
4-
% are installed/loaded:
5-
% Octave > 4
6-
% - image
7-
% - optim
8-
% - struct
9-
% - statistics
10-
%
11-
% MATLAB >= R2015b
12-
%
13-
% 2 - Add project to the O/M path
1+
% (C) Copyright 2020 Agah Karakuzu
2+
% (C) Copyright 2019 CPP BIDS SPM-pipeline developpers
143

154
function initEnv
5+
% 1 - Check if version requirements
6+
% are satisfied and the packages are
7+
% are installed/loaded:
8+
% Octave > 4
9+
% - image
10+
% - optim
11+
% - struct
12+
% - statistics
13+
%
14+
% MATLAB >= R2015b
15+
%
16+
% 2 - Add project to the O/M path
1617

1718
octaveVersion = '4.0.3';
1819
matlabVersion = '8.6.0';
@@ -56,8 +57,8 @@
5657

5758
if numel(dir(libDirectory)) <= 2 % Means that the external is empty
5859
error(['Git submodules are not cloned!', ...
59-
'Try this in your terminal:', ...
60-
' git submodule update --recursive ']);
60+
'Try this in your terminal:', ...
61+
' git submodule update --recursive ']);
6162
else
6263
addDependencies();
6364
end

miss_hit.cfg

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# style guide (https://florianschanda.github.io/miss_hit/style_checker.html)
22
line_length: 100
33
regex_function_name: "[a-z]+(([A-Z]){1}[A-Za-z]+)*"
4-
suppress_rule: "copyright_notice"
54
exclude_dir: "lib"
5+
copyright_entity: "Mohamed Rezk"
6+
copyright_entity: "Agah Karakuzu"
7+
copyright_entity: "CPP visual motion localizer developpers"
68

79
# metrics limit for the code quality (https://florianschanda.github.io/miss_hit/metrics.html)
810
metric "cnest": limit 4

setParameters.m

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
% (C) Copyright 2020 CPP visual motion localizer developpers
2+
13
function [cfg] = setParameters()
24

35
% VISUAL LOCALIZER

subfun/doDotMo.m

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
% (C) Copyright 2018 Mohamed Rezk
2+
% (C) Copyright 2020 CPP visual motion localizer developpers
3+
14
function [onset, duration] = doDotMo(cfg, thisEvent, thisFixation)
25
% Draws the stimulation of static/moving in 4 directions dots or static
36
%

subfun/expDesign.m

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
% (C) Copyright 2020 CPP visual motion localizer developpers
2+
13
function [cfg] = expDesign(cfg, displayFigs)
24
% Creates the sequence of blocks and the events in them
35
%

subfun/expDesignMtMst.m

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
% (C) Copyright 2020 CPP visual motion localizer developpers
2+
13
function [cfg] = expDesignMtMst(cfg)
24
% Creates the sequence of blocks and the events in them
35
%

subfun/getDesignInput.m

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
% (C) Copyright 2020 CPP visual motion localizer developpers
2+
13
function [nbBlocks, nbRepet, nbEventsBlock, maxTargBlock] = getDesignInput(cfg)
24
nbRepet = cfg.design.nbRepetitions;
35
nbEventsBlock = cfg.design.nbEventsPerBlock;

subfun/postInitializationSetup.m

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
% (C) Copyright 2020 CPP visual motion localizer developpers
2+
13
function varargout = postInitializationSetup(varargin)
24
% varargout = postInitializatinSetup(varargin)
35

subfun/preSaveSetup.m

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
% (C) Copyright 2020 CPP visual motion localizer developpers
2+
13
function varargout = preSaveSetup(varargin)
24
% varargout = postInitializatinSetup(varargin)
35

subfun/preTrialSetup.m

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
% (C) Copyright 2020 CPP visual motion localizer developpers
2+
13
function varargout = preTrialSetup(varargin)
24
% varargout = postInitializatinSetup(varargin)
35

0 commit comments

Comments
 (0)