What I am trying to do is, to load multiple 'network' files and assign them to variables, so that I can access their internal parameters (weights, bias etc.). When I try to load each like this:
a = load('networkFileName')
Then, variable 'a' becomes a struct with a network file inside, which cannot have its parameters accessed, unless you call:
a.net123
Is there another way to load the network variable directly in another variable?