diff --git a/NWClass.m b/NWClass.m new file mode 100644 index 0000000..0f9d7fa --- /dev/null +++ b/NWClass.m @@ -0,0 +1,24 @@ +classdef untitled + %using this class it will be posible to get the optimal threshold in + %order to binarize the adjacency matrix + + properties + A=[]; % adjacency matrix + Atype='cc'; %alternative: z-score + Aform='full'; %full: full adjacency matrix as list. + %triu: upper triangle listed including diagonal. %symetry is assumed + %tril: lower triangle listed including diagonal. % symetry is assumed + %list: q by 3: each entrie: [strength source target] + + + end + properties(Constant) + TimeDim=2; %this should be a constant + SubjDim=3; %this should be a constant + end + + methods + end + +end +