checkconstraint.m

来自「UMDA. a kind of estimation of distributi」· M 代码 · 共 23 行

M
23
字号
function[Overlappings,Pos] =  CheckConstraint(Pos,pos,vector)% Given the configuration of residues, calculates the number of % Overlappings  that the  addition of move mov at position pos provokesnglobal InitConf;Overlappings = 0;if(pos < 3) return;end [Pos] = PutMoveAtPos(Pos,pos,vector(pos));     for j=1:pos-2,   % Check for Overlappings and Collissions in all the    molecules except the previous one    if(Pos(pos,1)==Pos(j,1) & Pos(pos,2)==Pos(j,2))      Overlappings = Overlappings + 1;    end   end  % Last version 10/09/2005. Roberto Santana (rsantana@si.ehu.es) 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?