Skip to main content

LabelledAdjStruct

Holds the network topology and structural properties. The toolbox allows for manipulation of this object using the app, but there is currently limited support for manipulation of this object from the command line. This will be improved in a future release. Therefore, the user should create and edit the network structure in the app and save it to a file to proceed with the identification. To retrieve the saved network structure from a (.mat) file run:

load(<path-to-mat-file>); %Stores network details in 'adjacency'
netw = LabelledAdjStruct();
netw.loadAdj(adjacency);

netw now holds a LabelledAdjStruct object, which can be used to construct a nwpredmodel or nwmodel object.