Mercurial > hg > camir-aes2014
annotate toolboxes/FullBNT-1.0.7/bnt/general/compute_fwd_interface.m @ 0:e9a9cd732c1e tip
first hg version after svn
author | wolffd |
---|---|
date | Tue, 10 Feb 2015 15:05:51 +0000 |
parents | |
children |
rev | line source |
---|---|
wolffd@0 | 1 function int = compute_fwd_interface(intra, inter) |
wolffd@0 | 2 % COMPUTE_FWD_INTERFACE Compute nodes with children in the next slice |
wolffd@0 | 3 % function int = compute_fwd_interface(intra, inter) |
wolffd@0 | 4 |
wolffd@0 | 5 int = []; |
wolffd@0 | 6 ss = length(intra); |
wolffd@0 | 7 for u=1:ss |
wolffd@0 | 8 if any(inter(u,:)) |
wolffd@0 | 9 int = [int u]; |
wolffd@0 | 10 end |
wolffd@0 | 11 end |