view +multiblock/gridVector1d.m @ 126:54055b32d516

Changed evolve so that it always stops as close to tend as possible.
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 01 Feb 2016 17:08:19 +0100
parents 48b6fb693025
children
line wrap: on
line source

function x = gridVector1d(schms)
    n = length(schms);
    x = cell(n,1);

    for i = 1:n
        x{i} = schms{i}.x;
    end
end