view flat_index.m @ 160:c700b26ad304 feature/grids

Multiblock.m: Made methods lower case. Added a method.
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 22 Feb 2016 12:27:31 +0100
parents 48b6fb693025
children
line wrap: on
line source

function I = flat_index(n,i,j)
    I = i + (j - 1)*n;
end