To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Revision:

root / _FullBNT / BNT / general / compute_fwd_interface.m @ 8:b5b38998ef3b

History | View | Annotate | Download (266 Bytes)

1
function int = compute_fwd_interface(intra, inter)
2
% COMPUTE_FWD_INTERFACE Compute nodes with children in the next slice
3
% function int = compute_fwd_interface(intra, inter)
4

    
5
int = [];
6
ss = length(intra);
7
for u=1:ss
8
  if any(inter(u,:))
9
    int = [int u];
10
  end
11
end