preliminary definition of the class
Signed-off-by: Remco Renken <r.j.renken@umcg.nl>
This commit is contained in:
parent
85094ca8d9
commit
5a32c46af4
24
NWClass.m
Normal file
24
NWClass.m
Normal file
@ -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
Block a user