Matlab实现Attention Switching Model

Matlab实现Attention Switching Model

注意力切换模型(Attention Switching Model)是一种认知心理学模型,用于解释人类在执行多任务时如何切换注意力。该模型认为,人们在执行多个任务时,需要在不同任务之间切换注意力,以便有效地完成任务。

注意力切换模型通常用于研究人类的认知过程和执行多任务的能力。它可以解释为什么在切换任务时会出现一定的延迟和错误率,并提供了一种解释认知资源分配和任务切换机制的理论框架。

实现代码:

%ATTENTION SWITCHING MODEL
%delta = 4 results in accuracy equal to switch probability

clear all;

nrun = 20; % number of separate runs to estimate precision
nt = 1000000; % number of trials, more than 10,000,000 is slow
d = 6; % “delta”, target-distractor differentce (d’ units)
w = 1; % weight for cued loc; other loc is weighted 1-w
v = .8; % validity of cue (used to calculate mean pc)

probswitch = .8;

nvalid = ntprobswitch;
ninvalid = nt
(1-probswitch);

VR1 = zeros(nt, 1);
VR2 = zeros(nt, 1);
DV = zeros(nt, 1); %Decision variable when weight is one at cued location
DI = zeros(nt, 1); %Decision variable when weight is one at uncued location
Dtotal = zeros((nt*2),1);

vec = [1:nt];
swtch = 1:nt;
Shuffle(vec);
Shuffle(swtch);

% swtch = randi(80, 100);

for i = 1:nt

if vec(i) <= nvalid
VR1(i) = randn(1)+d/2; % stim R at cued
VR2(i) = randn(1); % nothing at uncued
else
VR1(i) = randn(1); % nothing at cued
VR2(i) = randn(1)+d/2; % stim R at uncued
end

if swtch(i) <= nvalid
DV(i) = w*VR1(i)+(1-w)*VR2(i);% weighting cued 1
DI(i) = randn(1);
else
DI(i) = (1-w)VR1(i)+ wVR2(i); % weighting uncued 1
DV(i) = randn(1);
end
end
rV = zeros(size(DV)); % create vector of zeros
rV(DV>0) = 1; % make 1 if correct
pcv = mean(rV);

rI = zeros(size(DI));
rI(DI>0)= 1;
pci = mean(rI);

pcv
pci

Dtotal(1:(length(Dtotal)/2))= DV;
Dtotal((length(Dtotal)/2)+1:length(Dtotal))=DI;
rT(Dtotal>0) = 1;
pctotal = mean(rT)

%%

%
% Hv = [0.55, 0.67, 0.7466, 0.7817, 0.7950, 0.7989]; %the obtained Hv for SNR 0-5
% Hi = [0.14, 0.16, 0.1866, 0.1955, 0.1987, 0.1997]; %the obtained Hi for SNR 0-5
%
% x = [1 2 3 4 5 6]; %x-axis
%
% plot(x, Hv, ‘-o’, x, Hi, ‘-s’); %plot of all three lines
%
% %‘-o’ means each point is marked with a circle
% %‘-s’ means each point is marked with a square
% % %‘-d’ means each point is marked with a diamond
%
% print(1, ‘-r600’, ‘-djpeg’, ‘allornonemodel’) %saves the figure to my directory
% %600 resolution, jpeg file, titled ‘linearmodel’

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

我悟了-

你的激励是我肝下去的动力~

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值