about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/SLP/learning/mk_naive_struct.m
blob: 33e6b7d7692baf1e5eb4a386d2aec38a361fc5dc (plain)
1
2
3
4
5
6
function S = mk_naive_struct(n,C)
%
% S = mk_naive_struct(Number_of_nodes, Class_node)
%
S = zeros(n);
S(C,setdiff(1:n,C)) = 1;