preliminary definition of the class

Signed-off-by: Remco Renken <r.j.renken@umcg.nl>
This commit is contained in:
R.J. Renken 2019-01-11 13:00:53 +01:00
parent 85094ca8d9
commit 5a32c46af4
1 changed files with 24 additions and 0 deletions

24
NWClass.m Normal file
View 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