view flat_index.m @ 593:37948bfe9d79 feature/better_multiblock_defs

Complete Rectangle definition
author Martin Almquist <malmquist@stanford.edu>
date Mon, 18 Sep 2017 19:41:12 +0200
parents 48b6fb693025
children
line wrap: on
line source

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