📄 rri_islowvariability.m
字号:
function status = rri_islowvariability(bodat, behavdata)
status = 0;
% Get what is in this particular behavmat
%
origU=unique(behavdata);
% Get how are those unique values clustered
% & does any one of them appear too often
%
for j=1:length(origU);
bodatU(j)=length(find(bodat==origU(j)));
end
if max(bodatU)/length(behavdata) >= 0.5
status = 1;
end
return;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -