⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rri_islowvariability.m

📁 国外的一个PLStoolbox,主要用于处理图象,也可以用来回归,欢迎使用
💻 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 + -