Jon McCormack is an electronic media artist and researcher based in Melbourne, Australia.

'Biologically Inspired Images > Science' 카테고리의 다른 글

what is the Higgs?  (0) 2013.10.16
Moore Neighborhood  (0) 2010.08.23
von Neumann Neighborhood  (0) 2010.08.23
Cellular Automaton  (0) 2010.08.23
Cellular Automata in Matlab  (0) 2010.08.23

'Biologically Inspired Images > Science' 카테고리의 다른 글

what is the Higgs?  (0) 2013.10.16
built by Francis A. Bitonti fadarch.com  (0) 2010.08.23
von Neumann Neighborhood  (0) 2010.08.23
Cellular Automaton  (0) 2010.08.23
Cellular Automata in Matlab  (0) 2010.08.23

'Biologically Inspired Images > Science' 카테고리의 다른 글

what is the Higgs?  (0) 2013.10.16
built by Francis A. Bitonti fadarch.com  (0) 2010.08.23
Moore Neighborhood  (0) 2010.08.23
Cellular Automaton  (0) 2010.08.23
Cellular Automata in Matlab  (0) 2010.08.23

'Biologically Inspired Images > Science' 카테고리의 다른 글

what is the Higgs?  (0) 2013.10.16
built by Francis A. Bitonti fadarch.com  (0) 2010.08.23
Moore Neighborhood  (0) 2010.08.23
von Neumann Neighborhood  (0) 2010.08.23
Cellular Automata in Matlab  (0) 2010.08.23
Mare 海 - 장남원 사진전

>> 작   가 : 장남원
>> 장   소 : 서울 > 중구 > 에비뉴엘 롯데갤러리 (9층)
>> 기   간 : 2010.07.02(금) - 07.18(일)
                ( 에비뉴엘 전층 : ~08.31(화)까지 )
>> 서울시 중구 남대문로 2가 130 롯데백화점 본점 에비뉴엘 9층 (02-726-4428)
>> www.avenuel.co.kr

http://blog.naver.com/artonline?Redirect=Log&logNo=30089898005

'Biologically Inspired Images > Nature' 카테고리의 다른 글

The Jellyfish Engine  (0) 2013.10.16

  1. Conway's life.
    The rule is:
    • Sum the 8 nearest neighbors
    • If the sum=2 then the state does not change
    • If the sum=3 then the state=1
    • Otherwise the state=0
    The code:
    x = 2:n-1;
    y = 2:n-1;
    %nearest neighbor sum
    sum(x,y) = cells(x,y-1) + cells(x,y+1) + ...
    cells(x-1, y) + cells(x+1,y) + ...
    cells(x-1,y-1) + cells(x-1,y+1) + ...
    cells(3:n,y-1) + cells(x+1,y+1);
    % The CA rule
    cells = (sum==3) | (sum==2 & cells);

'Biologically Inspired Images > Science' 카테고리의 다른 글

what is the Higgs?  (0) 2013.10.16
built by Francis A. Bitonti fadarch.com  (0) 2010.08.23
Moore Neighborhood  (0) 2010.08.23
von Neumann Neighborhood  (0) 2010.08.23
Cellular Automaton  (0) 2010.08.23

Julia Tsao is a user experience designer, design researcher and interactive tinkerer. She is partner and creative director of explorative design consultancy and creative partnership Fair Enough, based in Los Angeles, CA, where she explores the social implications of new media on culture, music, and design. Motivated by design research and ever-evolving creative strategies, she seeks to inform the development of provocative experiences through design-driven inquiry.

Julia is currently a Creative Executive at yU+co in Hollywood, heading up the interactive and experiential design group yU+co[lab].

'Info > person' 카테고리의 다른 글

Simon Penny  (0) 2010.10.26

+ Recent posts