changeset 17:4e61b949e73d

Eigenvalue/vector plot now sets colormap.
author samer
date Tue, 28 Feb 2012 22:49:23 +0000
parents 69bb19b71527
children 062d46712995
files mt_show_transmat.m
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/mt_show_transmat.m	Mon Feb 27 17:11:10 2012 +0000
+++ b/mt_show_transmat.m	Tue Feb 28 22:49:23 2012 +0000
@@ -21,6 +21,7 @@
 
 function show_eigs(Id,T) 
 	figure(40);
+	colormap prism;
 	[V,D]=eig(T); d=diag(D);
 	k=find(abs(d-1)<0.001);
 	subplot(3,1,1); plot_cvec(diag(D));