% fixedpoints.m % tests each vector u to see if it is a fixed point % % omega = inhibition constant function u = fixedpoints (omega) B = allbinary(9); i = 1; while i <= 2^9 current = B(i, 1:9); temp = current; temp = scan(omega, temp, 1); % scan on temp with 1 interation if temp == current fixedpoint = current end i = i+1; end