-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdm_list.m
More file actions
44 lines (36 loc) · 1.31 KB
/
dm_list.m
File metadata and controls
44 lines (36 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
classdef dm_list < mv_list & drift_mask
% unfinished... run script: /Users/Niki/Documents/MATLAB/vision_study/make_stim/DriftBar_step02.m to make the movie
%DRIFT_MASK_LIST generate multiple movies of drift mask with different
%parameters.
% each movie of is composed of multiple pieces of drift mask with
% specific parameters (duration, orientation, start center, end
% center). before and after each piece of drift grating, there are
% gray scale movies with the duration of pre and post inter trial
% interval.
properties
auto_ori_list = 4; % evenly spaced n orientations
orientation_sgmv = false;
start_center_list = [];
start_center_sgmv = false;
end_center_list = 0.5*2.^(0:4);
end_center_sgmv = false;
end
properties (Constant = true)
% parameter names should be identical to the properties of specific stimuli class
para_name = {'duration', 'orientation', 'start_center', 'end_center'}
end
properties (Dependent = true)
num_stml
num_mv
stim_tex
end
properties (Dependent = true, SetAccess = private)
start_orientation_list = [];
num_ori
num_sc
num_ec
% stim_tex
end
methods
end
end