Mercurial > repos > public > sbplib
view plotEig.m @ 1058:84933722ec0e feature/poroelastic
Remove superfluous method get_boundary_number in Elastic2dVariable
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Fri, 25 Jan 2019 16:35:53 -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