-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpspm_sf_theta.m
33 lines (32 loc) · 1.15 KB
/
pspm_sf_theta.m
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
function [theta, sr] = pspm_sf_theta
% ● Description
% pspm_sf_theta returns parameter values for skin conductance response
% function f_SF
% ● Format
% [theta, sr] = pspm_sf_theta
% ● Developer's Notes
% Estimated on 29-Jul-2009
% ● Outputs
% theta: a vector as [theta1, theta2, theta3, theta4, theta5]
% theta1: ODE parameter
% theta2: ODE parameter
% theta3: ODE parameter
% theta4: delay parameter, should be the same as for aSCR model as there is
% no explicit knowledge of SN bursts so it cannot be empirically
% determined this was corrected on 12.05.2014
% theta5: scaling parameter in log space, was slightly adapted on
% 12.05.2014 such that an input with unit amplitude elicits a
% response with exactly unit amplitude, see pspm_f_amplitude_check.m
% sf: sampling frequency
% ● History
% Introduced In PsPM 3.0
% Written in 2008-2015 by Dominik R Bach (Wellcome Trust Centre for Neuroimaging)
% Maintained in 2022 by Teddy Chao (UCL)
global settings
if isempty(settings)
pspm_init;
end
sts = -1;
theta = [0.923581 3.921034 2.159389 1.5339 1.6411756741];
sr = 10;
return