Mercurial > hg > trimatlab
view mt_show_transmat.m @ 10:bce0bd672b47
randomise.m is now public
author | samer |
---|---|
date | Wed, 22 Feb 2012 21:24:44 +0000 |
parents | e1534c7329e2 |
children | 0e0f2805ef9c |
line wrap: on
line source
% mt_show_transmat - Display image of transition matrix for voice % % mt_show_transmat :: % natural ~'voice id' % [[K,K]] ~'transition matrix' % -> action void. function mt_show_transmat(Id,T,I) figure(Id); imagesc(T,[0,1]); axis xy; if nargin<3, I=mc_global_info(T); end title(sprintf('H=%.2f, R=%.2f, PI=%.2f',I(1),I(2),I(3))); end