Mercurial > repos > public > sbplib
view plotEig.m @ 1015:9b7fcd5e4480 feature/advectionRV
Debug ResidualViscosity
- Pass exact time derivative to RungeKuttaExteriorRV and use that for evaluating the residual
- Start bootstrapping from later time level with higher order bdf
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Thu, 06 Dec 2018 17:03:22 +0100 |
parents | 7067bf8adbfa |
children |
line wrap: on
line source
% Plots all the eigen values for a sparse matrix. function plotEig(A) e = eig(full(A)); e = sort(e); plot(e,'.') end