Mercurial > hg > camir-ismir2012
annotate toolboxes/FullBNT-1.0.7/bnt/general/dsep_test.m @ 0:cc4b1211e677 tip
initial commit to HG from
Changeset:
646 (e263d8a21543) added further path and more save "camirversion.m"
author | Daniel Wolff |
---|---|
date | Fri, 19 Aug 2016 13:07:06 +0200 |
parents | |
children |
rev | line source |
---|---|
Daniel@0 | 1 |
Daniel@0 | 2 % Cowell et al p72 |
Daniel@0 | 3 G = zeros(10); |
Daniel@0 | 4 G(1,2)=1; |
Daniel@0 | 5 G(2,3)=1; |
Daniel@0 | 6 G(3,7)=1; |
Daniel@0 | 7 G(4,[5 8])=1; |
Daniel@0 | 8 G(5,6)=1; |
Daniel@0 | 9 G(6,7)=1; |
Daniel@0 | 10 G(7,[9 10])=1; |
Daniel@0 | 11 G(8,9)=1; |
Daniel@0 | 12 |
Daniel@0 | 13 dsep(1, 4, [5 7], G) |
Daniel@0 | 14 dsep(1, 4, [7], G) |
Daniel@0 | 15 dsep(1, 4, [10 5], G) |