Mercurial > repos > public > sbplib
view plotEig.m @ 917:878652b22157 feature/timesteppers
Make time.rk.rungekutta return stage approximations and stage rates in addition to the solution after one time step.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Mon, 26 Nov 2018 16:12:27 -0800 |
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