Mercurial > hg > trimatlab
diff mt_show_transmat.m @ 0:be936975f254
Initial check in.
author | samer |
---|---|
date | Wed, 01 Feb 2012 14:06:37 +0000 |
parents | |
children | ffd7efa3e5c0 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mt_show_transmat.m Wed Feb 01 14:06:37 2012 +0000 @@ -0,0 +1,11 @@ +% 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) + figure(Id); + imagesc(T,[0,1]); + axis xy;