fractal_persistence

Continuous Cellular Automata

Lenia (Chan 2019)

neighborhood kernel and growth function used in Lenia

Lenia update equation

# given
# a: cell states
# k: neighborhood kernel
# dt: step size
# grow: growth function
# conv: convolution function
# clip: clipping function (truncates values)

a = clip(a + dt * grow(conv(a,k)), 0., 1.)

Previous slideSupporting resourcesNext slide