Mercurial > repos > public > sbplib
view vector2cell.m @ 815:fae41958af4f feature/burgers1d
Add support for artificial viscosity to the 1d burgers scheme.
- Add support for artificial viscosity by parametrizing the discretization operator and boundary closure on the viscosity.
- Add a time stepper which evaluates and updates the residual viscosity of the solution.
author | Vidar Stiernstrom <vidar.stiernstrom@it.uu.se> |
---|---|
date | Thu, 06 Sep 2018 12:43:51 +0200 |
parents | a66aefd5e6ac |
children |
line wrap: on
line source
% Splits column vector v into segments of length n and returns the result as a column cell array. % v -- column vector to be split % n -- number of elements in each part % % cv -- cell array of vectors with lenght n(i) function cv = vector2cell(v,n) cv = cell(length(n),1); ind = [0; cumsum(n)]; for i = 1:length(n) ind_i = (ind(i)+1):ind(i+1); cv{i} = v(ind_i); end end