Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions src/model/Afferent.m
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
classdef Afferent < handle

properties
class@char vector
parameters@double vector
location@double vector
depth@double scalar
idx@int16 scalar
noisy@logical scalar
model@char vector
class char
parameters double
location double
depth double
idx int16
noisy logical
model char
end

properties (Dependent = true, SetAccess = private)
Expand Down
2 changes: 1 addition & 1 deletion src/model/AfferentPopulation.m
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
classdef AfferentPopulation < handle

properties
afferents@Afferent vector = Afferent.empty;
afferents Afferent = Afferent.empty;
end

properties (Dependent = true)
Expand Down
4 changes: 2 additions & 2 deletions src/model/Response.m
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
classdef Response < handle

properties
spikes@double vector
afferent@Afferent scalar
spikes double
afferent Afferent
propagated_struct
end

Expand Down
4 changes: 2 additions & 2 deletions src/model/ResponseCollection.m
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
classdef ResponseCollection < handle

properties
affpop@AfferentPopulation scalar
responses@Response vector
affpop AfferentPopulation
responses Response
stimulus
end

Expand Down
8 changes: 4 additions & 4 deletions src/model/Stimulus.m
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
classdef Stimulus < handle

properties(SetAccess = private)
trace@double = 1+.5*sin(linspace(0,10,5000)*2*pi*10)'; % indentation matrix (nsamples,npins)
location@double = [0 0]; % 2D coordinates of each pins (npins,2)
sampling_frequency@double scalar = 5000; % sampling frequency of the stimulus
pin_radius@double scalar =0.05; % pin radius
trace double = 1+.5*sin(linspace(0,10,5000)*2*pi*10)'; % indentation matrix (nsamples,npins)
location double = [0 0]; % 2D coordinates of each pins (npins,2)
sampling_frequency double = 5000; % sampling frequency of the stimulus
pin_radius double =0.05; % pin radius
profile % equivalent load profile
profiledyn % dynamic load profile
indentprofile
Expand Down