Is it possible to create periodic boundary conditions for a matrix with linear indexing?

27 visualizaciones (últimos 30 días)
Is it possible to create periodic boundary conditions for a matrix with linear indexing?
I created a matrix say LxL, it is populated with 1's or 0's to represent the presence of a particle or empty space. I'll calculate the total energy of the matrix by calculating the sum of the energy of the nearerst neighbours, i.e. the North, South, East and West compartments of an occupied cell will contribute some energy if also occupied. If I select a cell at the edge or corner of the matrix I need to specify that the end position of row 1 should neighbour to the first position in row 1, and the same system for all other boundary positions. Is there a way of doing this with linear indexing? Or maybe I should say, is there a way of doing this without ind2sub for a general LxL matrix?
Thanks

Respuesta aceptada

David Goodmanson
David Goodmanson el 2 de Dic. de 2019
Editada: David Goodmanson el 2 de Dic. de 2019
Hi Tom,
mod(k,N)+1 for the raised index, k+1
mod(k-2,N)+1 for the lowered index, k-1
and these do give the correct vector of indices for k = 1:N

Más respuestas (0)

Categorías

Más información sobre Chemistry en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by