Mercurial > repos > public > sbplib
view plotEig.m @ 496:437fad4a47e1 feature/quantumTriangles
Add 1d interface for shrodinger in 1d
author | Ylva Rydin <ylva.rydin@telia.com> |
---|---|
date | Fri, 24 Feb 2017 13:58:18 +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