From 5a32c46af4f4827677fc6fe268810ee1dc67fb03 Mon Sep 17 00:00:00 2001 From: Remco Renken Date: Fri, 11 Jan 2019 13:00:53 +0100 Subject: [PATCH] preliminary definition of the class Signed-off-by: Remco Renken --- NWClass.m | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 NWClass.m 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 +