view flat_index.m @ 894:f30eafd6d4dc

Add new formatting method to TextTable
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 22 Nov 2018 07:29:30 +0100
parents 48b6fb693025
children
line wrap: on
line source

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