1 changed files with 24 additions and 0 deletions
@ -0,0 +1,24 @@
@@ -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 |
||||
|
Loading…
Reference in new issue