Skip to content

Commit ee57c3a

Browse files
Update no_self_loops.m
1 parent 2e82553 commit ee57c3a

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

no_self_loops.m

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
% Graph-based scalable sampling of 3D point cloud attributes
2+
% IEEE. Transactions on Image Processing
3+
% Author: Shashank N. Sridhara, University of Southern California
4+
5+
%Function to compute self-loop weights for each block (zero self loop weights in this case)
6+
7+
18
function loop_wts_mat = no_self_loops(A, block_logical)
29
n_block = nnz(block_logical);
310
loop_wts_mat = sparse(n_block, n_block);

0 commit comments

Comments
 (0)